Create Specific version of angular project without install cli

Faisal Ahmed - Apr 21 - - Dev Community

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
. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .