Angular is one of the most popular JavaScript libraries to build Web applications. If you want to learn Angular, first thing you will need is to install Angular on your machine. In this step by step tutorial, we will see how to install Angular on in Windows.
Step 1. Install NodeJS
Follow the link - https://nodejs.org/en/download/
Download the node.js installer for Windows and install it.

To check the installed version of Node.js, open the command prompt.

Type the “npm -v” command to check the Node.js installation and version.

Open the link https://www.npmjs.com/package/typescript

Copy the above command “npm install -g typescript” and run it on command prompt.
Step 3. Install Angular CLI (Angular command line interface)
Open the link https://cli.angular.io/ and follow the instructions to install Angular CLI and to create your first Angular app.

Type the command “npm install -g @angular/cli” on the command prompt and press enter to install Angular cli.







Now, open the browser and type http://localhost:4200 in the address bar and hit enter to run the Hello World Angular app in the browser.


Bilel BeldiPosted Sep 9, 2022, 4:32 PM
Good tutorial, it is really helpful, found this youtube video helpful to : https://youtu.be/-GOPO-aweX0
Dipa MehtaPosted Mar 6, 2020, 7:57 AM
Good one, Nitin. It's a clear view of Angular installation.