In this video we are going to learn about Angular 10 Installation and creating an application.
Angular is a TypeScript-based open-source web application framework.
Which makes you able to create reactive Single Page Applications.
Alright, so lets create an angular 10 application.
For that first off all you have to install node js.
So go to the nodejs.org url and.
From here just download the nodejs executable file and install it in your computer.
You can check by the command whether nodejs is installed or not.
For that simply goto the command prompt and run the command.

node --version


After pressing enter you will get the installed node js version on console.
Alright Now install angular/cli globally.
So inside the command prompt run the command.


npm install -g @angular/cli


It will take few minutes to install it.
Now angular cli has been installed.
Now we are ready to create an angular 10 application.
So go to the command prompt and run the command.

So first of all choose location where you want to create the angular project.
I am going to create this project on my desktop.
So switch to the desktop.
For that just type here cd desktop and now I am on desktop.
Now type here the command.


ng new angular10pro


Now its creating the project.
It will take few minutes Now angular 10 project has been created.
Now lets run the application.


cd angular10pro
ng serve -o


Alright its compiling and now its running on http://localhost:4200/.
So lets check.
Switch to browser and go to the url localhost:42000.
Now you can see here the angular 10 application is running.
Now open this project inside the Visual Studio Code IDE.
So switch to the Visual studio code and just click on Open Folder.
Now browse the project directroy and just open it.
Alright this is folder structure of angular 10 project and just open package.json file.
Here you can see the angular 10.0.
So in this way you can create angular 10 project.