Tuesday 31 December 2019

Angular 8 Session 2: Setting Up Environment

Setting Up Environment

To setting up Angular environment we need to justify some of pre-requisites. The basic environment includes node.js and npm package manager.
Angular needs node version 10.9.0 or later. To install node:
To check installed versions run the following command in console window.
node -v    // To check node version
npm -v   // To check npm version
Next step is to install and setup Angular CLI. To install cli run the following command.
npm install -g @angular/cli
To know version of installed cli.
ng -v

Extensions & Plugins
To support typo intellisense in Visual Studio Code, we need following extension.
Angular Language Service
Go to Visual Studio Code – Extension – Search for Angular Language Service.
To help on debugging we need to install below plugin on browser.
Augury

No comments:

Post a Comment

Angular 8 Session 21 - ngFor Directive In Angular

ngFor Directive Content will be resume soon. Stay tuned!