LoginSignup
0
0

More than 5 years have passed since last update.

AngularJS4のインストール

Last updated at Posted at 2017-12-15

AngularJS4のインストール


#nmpが入ってることとバージョンの確認
npm -v 

#AngularJSのインストール
npm install -g @angular/cli #グローバルで設定したい場合は「-g」が要るが、ローカルで設定したい場合は不要

#ディレクトリを作りたい場所で移動
cd [ディレクトリ名]

#ディレクトリを作成
mkdir angular

#ディレクトリに入る
cd angular/

#作りたいアプリケーションのテンプレート作成
ng new [作りたいアプリケーションの名前]
例:ng new my-app

#上記のディレクトリに入る
cd [作りたいアプリケーションの名前]
例:cd my-app

#サーバの起動
ng serve --open

#サーバ停止
control + C


#AngularJS チュートリアル
https://angular.io/tutorial
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0