How to Install Angular 6 step by step
Before you install angular 6 make sure you should install below two points.
- Node.js with NPM (Node Package Manager)
- Angular-CLI (Command Line Interface)
If you are not sure in your machine having Node.js then check below command.Just open your command prompt and Run
1
|
node -v
|
If this command is not unrecognized by your machine then, that means Node Js still need to install, please install Node JS.
Next step is install angular CLI
1
|
npm install -g @angular/cli
|
Now how to check which version angular is installed?
Run the below line of command in your command prompt,then you can see the which version of angular is installed in your machine.
Run the below line of command in your command prompt,then you can see the which version of angular is installed in your machine.
1
|
ng -v
|
Output:
0 comments:
Post a Comment