맥에 Angular2 프로젝트 생성하는 방법에 대해서 알아보도록 하겠습니다.

Angular2 Setting for Mac

사전 준비

$ brew install node
*** 만약 HomeBrew가 설치가 되어있지 않은 경우, 아래 명령어로 설치

$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Angular-CLI 설치

$ npm install -g @angular/cli

프로젝트 생성

$ ng new [Project Name]

img

서버 실행

$ cd [Project Name]
$ ng serve

img

서버 실행 화면 (주소 : http://localhost:4200/)

img