Installing Angular and creating a new project in three Simple Steps
Installing node on your System
Go to the link

After installing check if it is installed or not .
node --version
npm -v

Installing Angular CLI
Major versions of Angular CLI follow the supported major version of Angular, but minor versions can be released separately.
Install the CLI using the npm
package manager:
npm install -g @angular/cli

Also we can check if it is installed or not by checking it’s version.
ng -v
Creating new Angular project
Now we can create a new project.
ng new project_name

After all the process is done we can now serve our project .

Go to the browser if the project is running Successfully or not.
