nodebrewのインストール
curl -L git.io/nodebrew | perl - setup
PATHを通す
echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bash_profile
再読み込み
source ~/.profile
nodebrewのインストール
curl -L git.io/nodebrew | perl - setup
PATHを通す
echo 'export PATH=$HOME/.nodebrew/current/bin:$PATH' >> ~/.bash_profile
再読み込み
source ~/.profile
Angular CLIを使用するためには、Node.jsとnpm(CLIをnpmコマンドでインストールするために必要)が必要
Angular CLIのインストール
npm install -g @angular/cli
正常にインストールされていれば、「ng」コマンドが通るはず。
ng version
プロジェクトのひな形を作成
ng new プロジェクト名
プロジェクトフォルダ内に移動
cd プロジェクト名
実行!!
ng serve
ブラウザで確認!
http://localhost:4200/