- Angular 4 – Examples
- Angular 4 – CLI
- Angular 4 – Materials
- Angular 4 – Animations
- Angular 4 – Forms
- Angular 4 – Http Service
- Angular 4 – Services
- Angular 4 – Routing
- Angular 4 – Pipes
- Angular 4 – Directives
- Angular 4 – Templates
- Angular 4 – Event Binding
- Angular 4 – Data Binding
- Angular 4 – Module
- Angular 4 – Components
- Angular 4 – Project Setup
- Angular 4 – Environment Setup
- Angular 4 – Overview
- Angular 4 - Home
Angular 4 Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Angular 4 - Environment Setup
In this chapter, we will discuss the Environment Setup required for Angular 4. To install Angular 4, we require the following −
Nodejs
Npm
Angular CLI
IDE for writing your code
Nodejs has to be greater than 4 and npm has to be greater than 3.
Nodejs
To check if nodejs is installed on your system, type node –v in the terminal. This will help you see the version of nodejs currently installed on your system.
C:>node –v v6.11.0
If it does not print anything, install nodejs on your system. To install nodejs, go the homepage
of nodejs and install the package based on your OS.The homepage of nodejs will look pke the following −
Based on your OS, install the required package. Once nodejs is installed, npm will also get installed along with it. To check if npm is installed or not, type npm –v in the terminal. It should display the version of the npm.
C:>npm –v 5.3.0
Angular 4 installations are very simple with the help of angular CLI. Visit the homepage
of angular to get the reference of the command.Type npm install –g @angular/cp, to install angular cp on your system.
You will get the above installation in your terminal, once Angular CLI is installed. You can use any IDE of your choice, i.e., WebStorm, Atom, Visual Studio Code, etc.
The details of the project setup is explained in the next chapter.
Advertisements