npm设置及切换源命令

切换源单次安装

npm install vue --registry=https://registry.npm.taobao.org --save

显示当前仓库用的是哪个源

npm config get registry

npm config list也可以查看

如果npm publish报401或403错误,那么需要把源设置成npm官方

npm config set registry=http://registry.npmjs.org

之后可以再设回来

npm config set registry=https://registry.npm.taobao.org

 

如果安装失败, 可以通过以下命令清除npm缓存:

npm cache clean -f

// -f 强制清除

 

你可能感兴趣的:(npm)