0

I installed Node JS latest version. After that i installed Angular-CLI and created angular sample application with ng new command. Its created Angular 8 application. I have to install angular 6 instead of instead of Angular 8. How can i do?

Venu G
  • 11
  • 1
  • 2

2 Answers2

3

Create a new folder then use the below command to create a new project

npm i @angular/cli@6
ng new my-ng6-app
BPDESILVA
  • 2,040
  • 5
  • 15
  • 35
2

Use the following command,

npm install @angular/cli@version

npm install @angular/cli@6.2.6
Chetan Naik
  • 613
  • 3
  • 12