CLI Flashcards
1
Q
Install Angular CLI.
A
npm install -g angular/cli
2
Q
Create a new Angular application.
A
ng new my-app
ng n my-app
3
Q
Rebuild and run Angular application.
A
ng serve
4
Q
Rebuild and run application and open browser with the angular application.
A
ng serve –open
ng serve –o
5
Q
Rebuild the application.
A
ng build
6
Q
Run end to end testing
A
ng e2e