Is there a way to check the specific version of angular-cli
that\'s installed globally on my machine? I\'m in a Windows environment.
*npm -v* and *node -v
Go to your folder path in cmd where your angular is installed and type
ng --version
it will show your angular version. Thanks.
Simply run the following command :
ng v
Go to the package.json
file, check the "@angular/core"
version. It is an actual project version.
Simple run the following commands:
ng --version
OR
ng -v
Output on terminal:
/ \ _ __ __ _ _ _| | __ _ _ __ / ___| | |_ _|
/ △ \ | '_ \ / _` | | | | |/ _` | '__| | | | | | |
/ ___ \| | | | (_| | |_| | | (_| | | | |___| |___ | |
/_/ \_\_| |_|\__, |\__,_|_|\__,_|_| \____|_____|___|
|___/
Angular CLI: 6.0.8
Node: 10.15.0
OS: linux x64
Execute:
ng v
or
ng --version
tell you the current angular cli version number
You can use npm list -global
to list all the component versions currently installed on your system.
For viewing specific lists at different levels use --depth
.
e.g:
npm list -global --depth 0