- Angular 8 - Discussion
- Angular 8 - Useful Resources
- Angular 8 - Quick Guide
- Angular 9 - What’s New?
- Angular 8 - Working Example
- Angular 8 - Backward Compatibility
- Angular 8 - Building with Bazel
- Angular 8 - Ivy Compiler
- Angular 8 - Testing
- Angular 8 - CLI Commands
- Angular 8 - Accessibility
- Angular 8 - Internationalization (i18n)
- Angular 8 - Server Side Rendering
- Service Workers and PWA
- Angular 8 - Web Workers
- Authentication and Authorization
- Angular 8 - Form Validation
- Angular 8 - Forms
- Angular 8 - Animations
- Routing and Navigation
- Angular 8 - Angular Material
- Angular 8 - Http Client Programming
- Services and Dependency Injection
- Angular 8 - Reactive Programming
- Angular 8 - Pipes
- Angular 8 - Directives
- Angular 8 - Data Binding
- Angular Components and Templates
- Angular 8 - Architecture
- Creating First Application
- Angular 8 - Installation
- Angular 8 - Introduction
- Angular 8 - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Angular 8 - Installation
This chapter explains about how to install Angular 8 on your machine. Before moving to the installation, let’s verify the prerequisite first.
Prerequisite
As we know already, Angular is written in TypeScript. We need Node and npm to compile the files into JavaScript after that, we can deploy our apppcation. For this purpose, Node.js must be installed in your system. Hopefully, you have installed Node.js on your machine.
We can check it using the below command −
node --version
You could see the version of node. It is show below −
v14.2.0
If Node is not installed, you can download and install by visiting the following pnk −
Angular 8 installation
Angular 8 CLI installation is based on very simple steps. It will take not more than five minutes to install.
npm is used to install Angular 8 CLI. Once Node.js is installed, npm is also installed. If you want verify it, type the below command
npm -v
You could see the version below −
6.14.4
Let’s install Angular 8 CLI using npmas follows −
npm install -g @angular/cp@^8.0.0
To verify Angular 8 is properly installed on your machine, type the below command −
ng version
You could see the following response −
Angular CLI: 8.3.26 Node: 14.2.0 OS: win32 x64 Angular: ... Package Version ------------------------------------------------------ @angular-devkit/architect 0.803.26 @angular-devkit/core 8.3.26 @angular-devkit/schematics 8.3.26 @schematics/angular 8.3.26 @schematics/update 0.803.26 rxjs 6.4.0Advertisements