1steps to install angular 10
2step 1 :Install node
3download link=>https://nodejs.org/en/
4
5step 2 :Install angular Cli with Command prompt
6npm install -g @angular/cli
7
8step 3 : checking the installed angular version
9ng --version
10
11
12Initializing angular 10 project :
13ng new my-raj-app (here "my-raj-app" is App name)
14
15your project is initialised:
16go inside the project and run it with:
17
18ng serve -o
19
20done ....!! Happy coding..!! -rajesh reddy:)
21