2. Setup and Installation for Angular
Setup and Installation for Angular
Environment Requirements
1. Required Node with minimum 10+ Version for latest version of angular.
Reference link for Node: Node JS
2. Visual Studio or Atom IDE's for Application Development with Javascript and Typescript Support.
Reference Link for Visual Studio: VS-CODE
1. Required Node with minimum 10+ Version for latest version of angular.
Reference link for Node: Node JS
2. Visual Studio or Atom IDE's for Application Development with Javascript and Typescript Support.
Reference Link for Visual Studio: VS-CODE
Checking Node version
1. Open new command prompt and type (node -v or node --version). This should be output 10+ Version.
Command: node -v or node --version
Creating Angular environment Using npm
1. Open command prompt and use either of one following command prompt
(a) Command to install angular Globally through out the system: npm install -g @angular/cli
(b) Command to install angular Locally: npm install @angular/cli
Using command (a) there is no need to install angular-cli for every project
.Checking Angular version
1. Open new command prompt and then use the following command
Command: ng --version
The above commands gives complete information along with typescript and remaining versions.
Sample Attachment below for node and angular versions
By this our system is configured and ready to use Angular.
Comments
Post a Comment