install angular in windows code example

Example 1: install angular cli

npm install -g @angular/cli
ng new my-dream-app
cd my-dream-app
ng serve

Example 2: angular install

npm install -g @angular/cli

Example 3: angular cli

/* @latest is optional  */ 
npm install -g @angular/cli@latest

Example 4: install angular cli

npm install -g @angular/cli    //make sure you have node/npm installed 
ng new         //  eg:  ng new my-app
cd        // cd my-app
ng serve

Example 5: installing angular 10

$ cd angular-example-with-routing
$ ng serve

Example 6: installing angular 10

$ cd ~
$ ng new angular-example-with-routing

Tags:

Misc Example