How can I tell which version of Angular I am using?
I have tried:
angular --version
angular --v
angular -version
angular -v
but get
Another way would be to import VERSION constant from @angular/core and then dumping to console with:
console.log(VERSION.full); //5.2.11
Works in:
Not sure about Angular 2 and 3. (if someone could test that; pages are not available)
For AngularJS 1.x use angular.version:
console.log(angular.version); //1.7.4