pdamemo’s blog

プログラマとして定年を迎えて2年目に突入しました。(満37才)これからは自分がやりたかったことに挑戦しつつ少しでも社会に恩返ししていきたいです。そんな日々をつづっていこうと思います。

Angular メモ

Angular CLIをローカルにインストールする

npm i @angular/cli

Angular バージョンを確認する

npx ng v

Application のひな型を生成する

npx ng new my-app

Component を生成する

npx ng g component xyz

Angular Material を追加する

npx ng add @angular/material

PWA をサポートする

npx ng add @angular/pwa

依存性を追加する

npx ng add ???

リンティングツールを実行する

npx ng l

Component をテストする

npx ng test

e2e テストをする

npx ng e2e

本番環境用にビルドする

npx ng build --prod