环境检查
下载地址
https://nodejs.org/en/#download
检查版本
node -v
npm -v
重新安装 (安装到全局,从npm获取最新版本安装)
npm install npm -g
卸载
npm uninstall
查看/设置 当前仓库源
npm config get registry
临时使用
npm --registry https://registry.npm.taobao.org install express
永久使用
npm config set registry https://registry.npm.taobao.org
或者
npm config set registry https://registry.npm.taobao.org -global
或者
npm use taobao
强制清理npm的缓存
npm cache clear --force
安装cnpm
npm install -g cnpm --registry=https://registry.npm.taobao.org
查看版本
cpnm -v
vue -V
yarn
评论 (0)