# Node.js가 설치되어 있어야함
npm -v # npm이 설치되어있는지 확인, npm의 버전이 출력됨
npm install -g @angular/cli
# Angular 작업영역 생성
ng new my-app
# my-app으로 이동
cd my-app
# ng serve 명령 실행
ng serve --open
출처 : https://angular.kr/guide/setup-local
# Node.js가 설치되어 있어야함
npm -v # npm이 설치되어있는지 확인, npm의 버전이 출력됨
npm install -g @angular/cli
# Angular 작업영역 생성
ng new my-app
# my-app으로 이동
cd my-app
# ng serve 명령 실행
ng serve --open
출처 : https://angular.kr/guide/setup-local