DEV Community

Faisal Ahmed
Faisal Ahmed

Posted on

Create Specific version of angular project without install cli

npm init @angular@VersionName projectName
npm init @angular@17 myProject

npm init @angular@14 myApp
Enter fullscreen mode Exit fullscreen mode

with cli

npx -p @angular/cli@14 ng new myProject
Enter fullscreen mode Exit fullscreen mode

Top comments (1)

Collapse
 
jangelodev profile image
João Angelo

Hi Faisal Ahmed,
Your tips are very useful.
Thanks for sharing.