淘先锋技术网

首页 1 2 3 4 5 6 7
#查看npm源
npm config get registry
#npm 原始的源(发布npm包的时候一定要切换成这个源 npm adduser/npm login/npm publish发布)
npm config set registry https://registry.npmjs.org/

查看全局安装的软件
npm list -g

# 升级或安装 cnpm
$ npm install -g cnpm --registry=https://registry.npmmirror.com
$ npm config set registry https://registry.npmmirror.com

npm下载指定版本
cnpm i @supermap/[email protected]

npm查看历史版本  

npm view axios versions

npm查看本地安装版本

npm ls axios

npm ls xxx -g (查看全局安装的)