Augular 개발환경 설정 & 프레임워크 개요 Install Node.js 설치 Vscode 설치 Angular 설치 (npm install -g @angular/cli) Typescript 설치 (npm install -g typescript) Angular 프레임워크 아키텍쳐 출처: https://angular.io/guide/architecture Angular 구성요소 component: @Component 장식자 + component 클래스 template: 화면구성 역할을 담당하고 html로 작성됨 directive: template의 html 태그내에서 속성 핸들링 service: 컴포넌트가 공통적으로 사용되는 비지니스 처리 로직 담당 module: 각 구성요소 관리(component, s..