Guide to Create an Angular App


Install Angular CLI

Angular CLI (Command Line Interface) helps scaffold and manage Angular apps.

npm install -g @angular/cli

Create a New Angular App

Use Angular CLI to create your app:

ng new my-angular-app
  • You’ll be prompted for a few settings (like routing and CSS format). Choose based on your preferences.

  • Navigate into the project folder:

cd my-angular-app
Discussion

1

0