# Activity #6 Getting Started with Angular

###   
1\. Step 1 Download Node.js

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1724862135470/353ceffe-0e2b-417d-85cd-b98c1a0de712.png align="center")

###   
2\. Install Angular CLI:

Open your terminal or command prompt and run

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1724862171380/908d975f-c46d-430e-bcb2-05da6a24a55a.png align="center")

### 3.Step 3: Serve Your Application  

**Generate a New Angular Project:**

* In your terminal, navigate to the directory where you want to create your project, then run
    
    ![](https://cdn.hashnode.com/res/hashnode/image/upload/v1724862307936/3f56287e-7056-4a79-83c3-8a35c146fe42.png align="center")
    
* Follow the prompts. You can choose the default options or customize them as needed.  
    **Navigate to Your Project Directory:**
    
    * Once the project is created, navigate into the project directory
        
        ![](https://cdn.hashnode.com/res/hashnode/image/upload/v1724862569403/b6ca5a4b-c036-463c-bc0f-6681abb823d6.png align="center")
        

### 4\. Serve Your Application

Run the following command to start the Angular development server

`ng serve`

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1724862588739/271cf40a-22a3-414a-a644-f267889e54be.png align="center")

Open your browser and navigate to [`http://localhost:4200`](http://localhost:4200). You should see the default Angular welcome page.

### 5\. Modify the Application to Display “Hello + James Kent”  

![](https://cdn.hashnode.com/res/hashnode/image/upload/v1724862714093/132d4b3b-d53b-46fa-a64f-139bc4921182.png align="center")

###
