Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 655 Bytes

README.md

File metadata and controls

32 lines (19 loc) · 655 Bytes

Install Angular CLI

npm i -g @angular/cli sudo npm i -g @angular/cli

Start the project

npm install to install packages npm start starting the application

Stop previous application

netstat -aon | grep 3000 command will give us the port tskill <PORTNO> for windows npx kill-port 3000 for MAC

Create app-routing module and tie it to app module

ng generate module app-routing --module app --flat same command as ng g m app-routing --module app --flat

Create AuthComponent

ng g c auth --module app

Create HomeComponent

ng g c home --module app

Install buffer package for base64 encoding

npm i buffer