Developed By
Gautam Kumar - Full stack developer
DEEP DIVE INTO
To download Node Js, you can either use this URL: https://nodejs.org/en or click on the word "Node Js".
Please download the recommended stable version, as the current beta version may cause issues.
Install Node Js, just double-click on the downloaded file. Install it with the default steps the node provides, Please ensure that the NPM
checkbox is selected.
step 1 - Click on the next button
Accept the terms of the license agreement and click "Next."
please leave the location as the default and proceed by clicking the "Next" button.
Check if Node Package Manager is installed. If not, download the Node.js executable file, then repeat the steps and click on the "next" button.
Do not check the check box and click next button
click the install button
Open the command prompt or press Window+R
or 🪟+R
on the desktop. It will open a command prompt for you. Which looks like the below screenshot.
command: node -v,
and press enter - My system shows node version 18.16.0
CLI provides a command line interface to work with the Angular framework, making it very convenient.
Execute npm install @angular/cli -g
or npm i @angular/cli -g
command on the command prompt
The above command will install angular-cli globally on your machine.
To check if angular-cli is installed properly on the system, run the command ng version
on the command prompt. It will display the angular version, node version, npm version, and operating system version and its package details on the command prompt.
!! Yeeee, At this point, you are ready to rock and roll, now you have angular on your system. Be ready to create a Hello World project in Angular with the help of Angular-CLI.
info