Init your node project

npm init -y

Install needed dependencies

npm install -g @angular/cli

Test angular

ng v

Create Angular app

ng new <name-of-app>

💡 for no tests add --skip-tests


Check if your app working

cd to your app first

ng serve -o

Generate new Components

ng g c <components/a/b/.. >

or

ng generate component <name>