Checking version of angular-cli that's installed?

后端 未结 13 647
情书的邮戳
情书的邮戳 2020-12-12 11:46

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

13条回答
  •  遥遥无期
    2020-12-12 12:00

    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
    

提交回复
热议问题