CLI Flashcards

1
Q

Install Angular CLI.

A

npm install -g angular/cli

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Create a new Angular application.

A

ng new my-app

ng n my-app

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Rebuild and run Angular application.

A

ng serve

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Rebuild and run application and open browser with the angular application.

A

ng serve –open

ng serve –o

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Rebuild the application.

A

ng build

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Run end to end testing

A

ng e2e

How well did you know this?
1
Not at all
2
3
4
5
Perfectly