For each project I use different version of angular-cli. So I need to manage two or more angular-cli version in one system. How can I install those?
Asked
Active
Viewed 766 times
-1
-
2Possible duplicate of [angular-cli different versions in the same computer](https://stackoverflow.com/questions/43018777/angular-cli-different-versions-in-the-same-computer) – Nico Haase Feb 05 '19 at 09:40
1 Answers
0
Use local version of @angular/cli instead of global version.
Global Version - npm install -g @angular/cli Local Version - npm install @angular/cli
For both the project install the angular version locally in the project.

Ankur Jain
- 221
- 1
- 6