다음은 간단한 AngularJS기반 앱 개발 순서이다. Java나 ASP기반 방법보다 간단하다.
1. set up the development environment
npm install -g @angular/cli
2. create new project
ng new my-app
3. serve the application
cd my-app
ng serve --open
4. Edit your first Angular component
edit src/app/app.component.ts
export class AppComponent {
title = 'My First Angular App';
}
edit src/app/app.component.css
h1 {
color: #369;
font-family: Arial, Helvetica, sans-serif;
font-size: 250%;
}
5. run
좀 더 상세한 개발 방법은 다음 튜토리얼을 참고한다.
댓글 없음:
댓글 쓰기