npm安装相关

单次修改安装源

npm install -g module-name --registry=https://registry.npm.taobao.org

修改npm全局默认的安装源

npm config set registry https://registry.npm.taobao.org
适用于react 或者 vue的脚手架自动安装一些包比较慢的时候

查看npm的安装源

npm config get registry

npm源还原默认设置

npm config edit
打开配置文件后删除registry = https://registry.npm.taobao.org 一行,便会还原为默认的npm源

使用npm config get registry查看当前源

参考

https://cj1406942109.github.io/2018/12/26/npx-create-react-app-my-app-no-response/
https://blog.hunk.ink/2017/09/19/npm%E6%BA%90%E7%9A%84%E8%AE%BE%E7%BD%AE%E4%B8%8E%E8%BF%98%E5%8E%9F/

你可能感兴趣的:(npm安装相关)