문서의 이전 판입니다!
AngularJS와는 구분되어지며, AJAX, SPA(Single Page Application) MVC시대를 거처 Web Component로 대변되는 FrontEnd Framework의 일종임.
npm install -g @angular/cli
ng new my-app
cd my-app ng serve --open
The CLI created the first Angular component for you. This is the root component and it is named app-root. You can find it in ./src/app/app.component.ts. Open the component file and change the title property from 'app' to 'My First Angular App!'.
generates an NgModule.
ng generate module [name]
generates a component.
ng generate component [name]