Reputation: 665
I'm new to angular.
I'm creating an angular app using
ng new <app name>
but here I don't know how to specify the angular version and I don`t know how to check the angular version of the created app.
Can anyone help me in finding a solution for this.
Upvotes: 0
Views: 67
Reputation: 591
In package.json of your project you will find the current angular version you are using it in your project.
Also you can go through below link for knowing much in details https://angular.io/guide/quickstart
Upvotes: 0
Reputation: 341
You can find the angular version in your package.json file:
You can also change the version of all or of specific packages here, and then rerun npm install
to install your specified version.
Upvotes: 2