How can I check which version of Angular I'm using?

527    Asked by Aashishchaursiya in Python , Asked on Jul 1, 2021

How can I check which version of Angular I am using?

I have tried:

angular --version 
angular --v 
angular -version 
angular -v
but get -bash: angular: command not found
I know by yeoman --version that I am using 0.9.6

But how do get my angularjs version?

Answered by Amit jaisawal

 You can use angular-cli, where you need to type ng -v and you will get the version of Angular.

Or

Checking the Angular Version

There are a couple of ways to ascertain the version of Angular you are currently using. Open the Terminal + view in your project and type ng --version . For recent versions of Angular, this will list the versions of several Angular packages that you have installed in your project.



Your Answer

Interviews

Parent Categories