From cba26fb70ef40a7df91c8675341b51965f7e6551 Mon Sep 17 00:00:00 2001 From: rupeshbangar Date: Mon, 2 Mar 2026 02:01:27 +0530 Subject: [PATCH] Project Setup with Angular --- Week-03/Day_05/README.md | 45 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/Week-03/Day_05/README.md b/Week-03/Day_05/README.md index e69de29..6f543b8 100644 --- a/Week-03/Day_05/README.md +++ b/Week-03/Day_05/README.md @@ -0,0 +1,45 @@ +# 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 + +```bash +npm install -g @angular/cli +``` + +--- + +## Create & Run Project + +### Create a New Angular Project + +```bash +ng new my-angular-app +``` + +### Navigate into the Project Directory + +```bash +cd my-angular-app +``` + +### Start the Development Server + +```bash +ng serve --open +``` + +The application will open automatically in your default browser at: + +``` +http://localhost:4200/ +``` \ No newline at end of file