Home  >  Blog  >   AngularJS

How to Install Angular?

You Landed on the right Article. Hooray, In this Article, you will be able to learn how to install Angular on a Windows machine. Oh, wait, What is Angular? It is a Single Page Web Application Framework. It helps create scalable web applications. This Article has a detailed walkthrough on the installation, so follow a step-by-step approach. By the end of this Article, you will be able to install NodeJs, and NPM and create your first Angular web application. Let's start.

Rating: 4.8
  
 
2082

Angular  is a single-page web application framework created in Typescript. Single-page application means all the application functions exist in a single HTML page only, and when the user requests any features, it renders that part only, and it doesn't load the complete page or redirect to a new page. As a result, the user experience becomes smooth. This framework is created and managed by Google.

How To Install Angular - Table of Contents

Prerequisites to Install Angular

These are the minimum requirement to run Angular on your Windows system:

  • Node.js 
  • Node Package Manager
  • Any IDE (Preferred VS Code) 
  • Processor i3 and above 
  • RAM 4GB and above.
If you want to enrich your career and become a professional in Angular, then enroll in "Angular Online Training". This course will help you to achieve excellence in this domain.

What is NodeJs?

NodeJs is a runtime environment for javascript that runs the Javascript code outside the web browser. It is a cross-platform and open-source platform, which means it can run on Windows, Linux, MacOS, Unix, etc. With the help of NodeJs, you can create various applications as it comes with an inbuilt Package Manager, which contains enormous libraries that help create scalable applications.

What is NPM?

It stands for Node Package Manager. With the help of NPM, you can download all the javascript libraries. It is a default package manager for the JavaScript runtime environment NodeJs.

How To Install NodeJS on Windows?

Let’s get started by installing NodeJS first. If you have the NodeJs installed, skip to step 11 for Angular installation.

Step 1: To install NodeJs: Visit  https://NodeJs.org/en/download

Install NodeJS

Step 2: Click on the windows installer and save the .exe file on your system.

Windows Installer

Step 3: Open the .exe file and click on Next.

Save .exe file

Open .exe file

Step 4: Click on the checkbox, I agree the terms in the license agreement and click Next.

Accept License

Step 5: Click Next followed by Next and Next, leaving rest as the default.

Destination Folder

Custom setup

Native Modules

Step 6: Finally, click on Install. For system administration permission, click yes then installation will progress.

Ready to install nodejs

Step 7: Installation in progress.

Installing Nodejs in progress

MindMajix Youtube Channel

Step 8: Finally, NodeJs have been successfully installed. Now click on Finish.

Nodejs installed

Step 9: verify NodeJs and Npm installation. Now, type the Windows+r key, and the dialog box will open. Type cmd hit enter, or in Windows search, type command prompt, and open it.

cmd prompt

Step 10: Verify NodeJs and Npm installation by typing the command:

node –version

and

npm –version

Verify Nodejs

Angular CLI Installation on Windows

Step 11: Type the following command and hit enter:

npm install -g @Angular/cli 

Angular cmd

Step 12: To check the Angular CLI version, type following command:

ng version

Angular CLI version

[ Check out Top Angular Projects For Beginners ]

Creating a Project Using Angular CLI

Step 13: Let's create the Angular project. If you have a code editor, create and open the folder in the code editor. After opening the code editor, type the command ng create project_name followed by yes and enter so it will create the Angular project for you.

Now change the current directory to a project by typing the command cd project_name and hitting enter.

So now you are in the current project directory, so type the command ng serve will open the Angular project on localhost:4200. Hover on the localhost 4200 http link and click on it or type the command ng serve –open so it will open the project in the browser.

Code Editor

Blog post image

Brower

Blog post image

Step 14: Let's modify the project by opening the app.component.html file from src/app/ Clear all its content, type the code below, and see the browser for the changes.

<div>
<h1>Hello World</h1>
<h2>Hello World</h2>
<h3>Hello World</h3>
<h4>Hello World</h4>
<h5>Hello World</h5>
</div>

Code Editor

Blog post image

Brower

Blog post image

Learn Angular JS Interview Questions and Answers that help you grab high paying jobs

Angular CLI Installation FAQs

1. How do I install Angular?

To install angular you need to install Node.Js from the official website. After that you need to install Angular CLI by opening the command prompt and running the command : npm install -g @angular/cli

2. How to use Angular CLI?

Install Angular CLI globally through the command: npm install -g @angular/cli. After installing Angular CLI, create a new project and run the development server by opening the project folder.

3. How do I run an Angular project locally?

To run an Angular project locally, you need to install Angular CLI globally from the terminal. After creating a new project and running the development server, access your project through http://localhost:4200 in your browser.

4. How to install Angular CLI using NPM?

Open the command prompt and run the command: npm install -g @angular/cli to install Angular CLI using npm. After installation, verify it by running the command: ng - -version. It will display the Angular CLI version.

5. How to create a new Angular project?

After installing angular CLI, you can create a new project with the following command: ng new project-name with all the important files and dependencies.

[ Related Blog: How To Install React JS? ]

Conclusion

In this Article, we learned how to install Angular on Windows systems. Initially, we started with setting up NodeJs installation, then Angular project creation and modification. To create SPAs(single page applications), Angular is the best choice amongst developers. So based on your requirements, you can go with Angular or any other framework.

Join our newsletter
inbox

Stay updated with our newsletter, packed with Tutorials, Interview Questions, How-to's, Tips & Tricks, Latest Trends & Updates, and more ➤ Straight to your inbox!

Course Schedule
NameDates
Angular TrainingMay 04 to May 19View Details
Angular TrainingMay 07 to May 22View Details
Angular TrainingMay 11 to May 26View Details
Angular TrainingMay 14 to May 29View Details
Last updated: 30 Aug 2023
About Author

Viswanath is a passionate content writer of Mindmajix. He has expertise in Trending Domains like Data Science, Artificial Intelligence, Machine Learning, Blockchain, etc. His articles help the learners to get insights about the Domain. You can reach him on Linkedin

read more