-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathAngular_notes_ep_10.txt
More file actions
49 lines (36 loc) · 1.11 KB
/
Copy pathAngular_notes_ep_10.txt
File metadata and controls
49 lines (36 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
Episode #10 - Angular CLI
Angular CLI - Command Line Interface
- schematics -> angular.json / package.json
ng serve
ng build
ng test
ng lint
ng e2e
- commands
ng new <project_name>
ng generate component <component_name>
ng generate module <module_name>
ng generate pipe <pipe_name>
ng generate directive
angular.json
demo
ng serve
ng test
- test and run all our unit test scripts
ng e2e
- test and run all our end to end tests
ng lint
ng build
-> build your app and make it ready for production env deployment
-> dist <simpleCRM>
vendor.js
main.js
style.css
ng generate
ng g
components
pipes
modules
services
directives
applications