February 18, 2025

Basic Setup

To develop angular application, you need few software’s.

1: Install Node.js software.
Node.js is a server side language. Node.js is used behind the scene by the Angular CLI to bundle and optimize the project. we are using NPM: Node Package Manager. This is to manage different dependencies an Angular project has. Don’t worry. We are not writing Node.js program for Angular application. Follow the link to install Node.js and the NPM tool.

2: Install Angular CLI
The Angular CLI is a command-line interface tool that you use to initialize, develop, scaffold, and maintain Angular applications directly from a command shell. Using Angular CLI is the best way to create the application.

Once you install Node.js software, run the below command in command prompt to install Angular CLI
npm install -g @angular/cli
This will install CLI globally (we have used -g in above command). This will download the Angular CLI from the node package manager repository and will install on your machine. Version can differ depending upon upgrade from Angular side

Once you follow these steps, you are ready to write your first Angular application. All the best

Leave a Reply

Your email address will not be published. Required fields are marked *