Hello Devs,
In this tutorial, we are going to learn how to create first app in angular 10.
I have shown step by step tutorial of how to install angular cli and how to you can create your first app with angular 10 application below.
Install Angular CLI
npm install -g @angular/cli
Install Angular 10 Project
ng new first-app
Run this command:
cd first-app
ng serve
Open this URL:
http://localhost:4200
I hope this example helps you.