0
0

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 CLIでComponentを追加する

Posted at

VScodeでAngularを使ってなにか作ろうとしているのですが、コンポーネントを手軽に追加する方法を書きます。

Angular CLI でコンポーネントを追加しよう

Angular CLIをインストールしておくことでコマンドで簡単にコンポーネントを追加することができます。

Anguar CLIをインストール

VSCodeのターミナルで以下のコマンドを実行しましょう。

npm install  @angular/cli

バージョン指定

npm install  @angular/cli@8.3.19

インストールできたか一応確認

ng --version

     _                      _                 ____ _     ___
    / \   _ __   __ _ _   _| | __ _ _ __     / ___| |   |_ _|
   / △ \ | '_ \ / _` | | | | |/ _` | '__|   | |   | |    | |
  / ___ \| | | | (_| | |_| | | (_| | |      | |___| |___ | |
 /_/   \_\_| |_|\__, |\__,_|_|\__,_|_|       \____|_____|___|
                |___/
    

Angular CLI: 8.3.19
Node: 12.12.0
OS: darwin x64
Angular: 8.0.3
... animations, common, compiler, compiler-cli, core, forms
... language-service, platform-browser, platform-browser-dynamic
... router

Package                           Version
-----------------------------------------------------------
@angular-devkit/architect         0.13.9
@angular-devkit/build-angular     0.13.9
@angular-devkit/build-optimizer   0.13.9
@angular-devkit/build-webpack     0.13.9
@angular-devkit/core              7.3.9
@angular-devkit/schematics        8.3.19
@angular/cli                      8.3.19
@ngtools/webpack                  7.3.9
@schematics/angular               8.3.19
@schematics/update                0.803.19
rxjs                              6.5.3
typescript                        3.4.5
webpack                           4.29.0

バッチリですね:relaxed:

コンポーネントを追加する

以下のコマンドでコンポーネントが追加されます。

ng g component component-name

実行すると以下のようにファイルが作成されます。

component-name
└ component-name.component.css
└ component-name.component.html
└ component-name.component.spec.ts
└ component-name.component.ts

あとは好きなように実装しましょう!!!

0
0
1

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?