Search code examples
angularinstallationangular5angular-clidowngrade

installing older angular version 5?


I was working on personal project which was in Angular 5. Due to some reason I have changed my device, how could I install Angular 5 in my new device since there is new version is available, Is there any way to install Angular 5 instead Angular 6?


Solution

  • Like this

    npm uninstall -g @angular/cli  
    npm install -g @angular/[email protected]  
    

    but even install the lates angular cli will not effect your old project , just you will get a warning when you try to serve the project.

    Happy coding