Visual Studio Installs
Installing Visual Studio 2026 (Recommended) Installing Visual Studio 2022
Learning made easy.
Installing Visual Studio 2026 (Recommended) Installing Visual Studio 2022
Visual Studio takes a little while to install but it is a fairly easy process. Just download the install executable and work through the install wizard following the instructions below. Download Visual Studio Go to the following URL to download Visual Studio. https://visualstudio.microsoft.com/downloads From there you can select the Community Edition which is totally free…
Git is one of the most popular source control tools or SCM (Source Control Management) tools out there. If you need to track changes to your code, you’ll probably want to download and install this tool. This article serves as a quick cheat sheet to get Git setup on your computer and start getting familiar…
Postman is a great tool for testing your Web API Rest Services as you build them. It’s easy to test get operations from your browser. But it is more difficult to test post, put, and delete operations. Postman gives us an easy way to do this and it is very quick and easy install. Download…
If you’ve already installed Visual Studio 2022 then you should already have SQL Server LocalDB 2019. But installing SQL Server 2022 Express will give us more administrative and configuration ability if a time ever calls for it. Plus the client tools like SSMS (SQL Server Management Studio) will give us a much better GUI (Graphical…
Visual Studio takes a little while to install but it is a fairly easy process. Just download the install executable and work through the install wizard following the instructions below. Download Visual Studio Go to the following URL to download Visual Studio. https://visualstudio.microsoft.com/vs/#download From there you can select the Community Edition which is totally free…
In order to get Angular installed on our machine, we first need to install node.js. Installing node.js will give us a tool called npm (node package manager). We can then use npm to install Angular and the Angular CLI. (CLI stands for command line interface). Install Node.js Go to https://nodejs.org/en and download version 18.16.0 (at…