top of page

Installation Steps and local debugging for Angular 8

Writer's picture: Ashwini BhandariAshwini Bhandari

Updated: Aug 24, 2020


Introduction

In this blog post, we will see how to install a specific version of Angular i.e version 8.3.22 (you can as well use the version best suited for your project).





1) Let's start with Installation of Angular v8.3.22:

  • Click on the below link to download version of node.js

  • Open command prompt and check the version of node.js installed

node --version
  • Next, to install Angular CLI run the below command

npm install -g @angular/cli@8.3.22
  • Or if you like to install a latest version, run below command

npm install -g @angular/cli
  • To check if the correct Angular CLI version is installed run below command

ng --version

2) Now, let's try and debug if the installed Angular version works with below steps:

  • Open command prompt and create a new Angular project, run below command

ng new angular-project
  • Run the below command

cd angular-project
  • Run the application with command

ng serve

Sharing is Caring!

Thanks for reading!

82 views0 comments

Comentarios


bottom of page