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?
Asked
Active
Viewed 3,439 times
0
-
Why would you do that? Do you have an incompatibility? – ssc-hrep3 Aug 13 '19 at 04:34
2 Answers
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