top of page

Angular - Environment Setup for Windows


Well first time angular introduced in our community , all video series soon you can find on

so let's get started

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

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

2. Install developer IDE for Angular

it strongly recommended to use visual studio developer IDE

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

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

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

All development video series you can find in java techie

Do Subscribe java techie if you not yet done .

Regards,

Basant Hota


bottom of page