■新しく作成
↓↓↓↓↓↓↓ あなたの記事の内容
ng new hellow-world
───────
ng hello-world
↑↑↑↑↑↑↑ 編集リクエストの内容
■移動
cd hello-world
■visual studio起動
code .
■サーバー起動(localhost:4200)
ng serve
■バッククォート(`)で囲う
※シングルクォートで囲うと改行するとエラーになる。
template: ` `
■コマンドメモ
Component ng g component my-new-component
Directive ng g directive my-new-directive
Pipe ng g pipe my-new-pipe
Service ng g service my-new-service
Class ng g class my-new-class
Interface ng g interface my-new-interface
Enum ng g enum my-new-enum