Angular
[frontendmasters.com] Production-Grade Angular [2021, ENG]
Simple angular 11 project
Angular cli
$ npm init -y
-- without --save flag otherwise error
$ npm install @angular/cli
$ ng --version
$ ng new angular-hello-world
$ cd angular-hello-world
$ ng serve --host 0.0.0.0 --port 8080
Making a Component
$ ng generate component hello-world