![](https://static.wixstatic.com/media/a27d24_1fa9fec94eff48c7ac5db33ad03d73f8~mv2.png/v1/fill/w_980,h_551,al_c,q_90,usm_0.66_1.00_0.01,enc_auto/a27d24_1fa9fec94eff48c7ac5db33ad03d73f8~mv2.png)
Introduction
In this blog post, we will see how to install a specific version of Angular i.e version 8.3.22 (you can as well use the version best suited for your project).
1) Let's start with Installation of Angular v8.3.22:
Click on the below link to download version of node.js
Open command prompt and check the version of node.js installed
node --version
Next, to install Angular CLI run the below command
npm install -g @angular/cli@8.3.22
Or if you like to install a latest version, run below command
npm install -g @angular/cli
To check if the correct Angular CLI version is installed run below command
ng --version
2) Now, let's try and debug if the installed Angular version works with below steps:
Open command prompt and create a new Angular project, run below command
ng new angular-project
Run the below command
cd angular-project
Run the application with command
ng serve
Open http://localhost:4200/ to see the desired output
Sharing is Caring!
Thanks for reading!
Comentarios