how to create a angular project?
I am a front end developer, DSA solver
First setup Environment
install the necessary dependencies using node package manager(npm) globally in your system to access the commands,
npm -i -g @angular/cli
Now you have successfully installed CLI for your laptop globally to run Angular framework projects.
Now run the following command to create a new angular project.
ng new new-project-title
The command will ask for a few confirmations about CSS your have options like
plain CSS
Less CSS
SASS CSS
after you select the CSS it will create necessary dependencies and project structure of the angular web app.


