14
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Angularの良く使うコマンド一覧

Last updated at Posted at 2019-01-17

Angularの良く使うコマンド一覧を載せてみました。

###Angularコマンド一覧

内容 コマンド 備考
プロジェクト新規作成 ng new プロジェクト名 --style=scss プロジェクト作成時に聞かれます。とりあえずこれがいいと思います。Angular routing?:Yes、Which stylesheet:scss
モジュール新規作成 ng g m モジュール名 --routing 事前に「cd」コマンドでディレクトリを移動すること
コンポーネント新規作成 ng g c コンポーネント名 事前に「cd」コマンドでディレクトリを移動すること
サービス新規作成 ng g s サービス名 事前に「cd」コマンドでディレクトリを移動すること
アプリ実行 ng s -o 「s」は「serve」の略 「-o」は「open」の略で実行後にブラウザを開いてくれます。
アプリ実行 ng s -o --port 8888 オプションの「port」はポート番号変更しての実行
実行の停止 Ctrl+C → y
アプリリリースビルド ng build --prod
Gitから新規取得後のパッケージのインストール npm install
ng serveをiPadで表示 ng s --host 自分のIP iPadから「自分のIP:4200」で接続可能

皆さんの参考にしていただければ幸いです。

14
20
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
14
20

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?