thinuwan
thinuwan

Reputation: 665

Creating angular app in preferred version

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

Answers (2)

vishal0882
vishal0882

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

Lukas Ansteeg
Lukas Ansteeg

Reputation: 341

You can find the angular version in your package.json file:

enter image description here

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

Related Questions