583 B
583 B
Project Setup with Angular
Getting Started
Prerequisites
Make sure you have the following installed:
- Node.js (LTS version)
- npm (comes with Node.js)
- Angular CLI
Install Angular CLI
npm install -g @angular/cli
Create & Run Project
Create a New Angular Project
ng new my-angular-app
Navigate into the Project Directory
cd my-angular-app
Start the Development Server
ng serve --open
The application will open automatically in your default browser at:
http://localhost:4200/