문서의 선택한 두 판 사이의 차이를 보여줍니다.
| 양쪽 이전 판이전 판다음 판 | 이전 판 | ||
| study:angular [2018/09/10 02:26] – [Angular Module] taekgu | study:angular [2025/04/15 10:05] (현재) – 바깥 편집 127.0.0.1 | ||
|---|---|---|---|
| 줄 6: | 줄 6: | ||
| [[https:// | [[https:// | ||
| + | [[https:// | ||
| + | |||
| + | [[angular: | ||
| + | [[angular: | ||
| + | |||
| + | ==== 시작하기 ==== | ||
| + | <code bash> | ||
| + | C:\>echo " | ||
| + | " | ||
| + | |||
| + | C: | ||
| + | |||
| + | C: | ||
| + | |||
| + | C: | ||
| + | |||
| + | C: | ||
| + | |||
| + | C:\>node -v | ||
| + | v8.11.4 | ||
| + | |||
| + | C:\>npm -v | ||
| + | 6.4.1 | ||
| + | |||
| + | C:\>code -v | ||
| + | 1.30.2 | ||
| + | 61122f88f0bf01e2ac16bdb9e1bc4571755f5bd8 | ||
| + | x64 | ||
| + | |||
| + | C:\>ng version | ||
| + | |||
| + | | ||
| + | / \ _ __ __ _ _ _| | __ _ _ __ / ___| | |_ _| | ||
| + | / △ \ | '_ \ / _` | | | | |/ _` | ' | ||
| + | / ___ \| | | | (_| | |_| | | (_| | | | |___| |___ | | | ||
| + | / | ||
| + | |___/ | ||
| + | |||
| + | |||
| + | Angular CLI: 7.1.4 | ||
| + | Node: 8.11.4 | ||
| + | OS: win32 x64 | ||
| + | Angular: | ||
| + | ... | ||
| + | |||
| + | Package | ||
| + | ------------------------------------------------------ | ||
| + | @angular-devkit/ | ||
| + | @angular-devkit/ | ||
| + | @angular-devkit/ | ||
| + | @schematics/ | ||
| + | @schematics/ | ||
| + | rxjs 6.3.3 | ||
| + | typescript | ||
| + | |||
| + | |||
| + | C:\> | ||
| + | </ | ||
| ==== Angular 설치 [대표되는 Command] ==== | ==== Angular 설치 [대표되는 Command] ==== | ||
| - Angular CLI Install <code bash> | - Angular CLI Install <code bash> | ||
| 줄 11: | 줄 69: | ||
| </ | </ | ||
| - create new a new Angular Project <code bash> | - create new a new Angular Project <code bash> | ||
| - | ng new my-app | + | ng new my-app |
| + | ng new my-app --style=css | ||
| </ | </ | ||
| - Serve the application <code bash> | - Serve the application <code bash> | ||
| 줄 26: | 줄 85: | ||
| <code bash> | <code bash> | ||
| ng generate module [name] | ng generate module [name] | ||
| + | ng g m [name] | ||
| </ | </ | ||
| 줄 31: | 줄 91: | ||
| <code bash> | <code bash> | ||
| ng generate component [name] | ng generate component [name] | ||
| + | ng g c [name] | ||
| + | ng g c example/ | ||
| </ | </ | ||
| + | ==== support IE9-11 ==== | ||
| + | IE를 지원하려면, | ||