npm i -g @angular/cli
sudo npm i -g @angular/cli
npm install to install packages
npm start starting the application
netstat -aon | grep 3000 command will give us the port
tskill <PORTNO> for windows
npx kill-port 3000 for MAC
ng generate module app-routing --module app --flat same command as
ng g m app-routing --module app --flat
ng g c auth --module app
ng g c home --module app
npm i buffer