Environment Setup
In this chapter, we will learn how to set the environment for angular.
Installing Visual Studio Code IDE
Step 1: Download the VS Code IDE from https://code.visualstudio.com/Download by selecting your installed System OS.
Step 2: Now install the VS Code by executing the .exe file.
Installing Node.Js
Step 1: Download the node.Js from here by selecting your architecture and installing it.
Step 2: Check whether the node.js is installed correctly or not by giving the following command to the command prompt.
node -v
Installing Angular CLI
Step 1: Open the command prompt and give the following command:
npm install -g @angular/cli
Step 2: Now check whether it is installed correctly or not by checking its version using the following command.
ng --version