Angular-Setup for Windows

Java Techie
2 min readOct 15, 2019

--

Prerequisites to work with Angular

Installation Steps :

1. Install node js (Basically Node Js will provide run-time environment to develop angular application)

Download Link : https://nodejs.org/en/

Once you open this link , you can find two version to download like below

download page

Click on Current Version , even you can download LTS (long term support version) both will work !!

Along with Node it will install and configure Node package manager (npm) in your environment

verify node and npm version which installed in your machine using below command

node Version : node -v

npm Version : npm -v

version

2. Install developer IDE for Angular

it strongly recommended to use visual studio developer IDE

download from below link : https://code.visualstudio.com/

IDE

3. Install Angular cli (Command line interface)

This is just a Command line interface provided by angular to create your code base through command prompt , so as a developer you no need to worried about internal code structure , only we need to write business implementation

rest all will be take care by angular @cli

official link : https://cli.angular.io/

You can install it through command

npm install @angular/cli

This will install angular cli in your current directory where you are in now

npm install -g @angular/cli

This will install angular cli globally so that you can use it from any directory

Now just verify angular @cli version

command : ng -version

@angular/cli

Great so all good , we are done with environment setup !!

--

--