Files
Web-Development/Week-03/Day_05
..
2026-03-02 02:01:27 +05:30

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/