环境 & 软件
- macOS 10.15.1
- Node.js v14.5.0
- npm v6.14.5
问题
使用npm下载太慢
解决方法
- 设置成国内的淘宝镜像
npm config set registry https://registry.npm.taobao.org
npm config set registry http://registry.npmmirror.com
- 设置成国内的清华镜像
npm config set registry https://registry.npmmirror.com
- 恢复使用之前的 npm 源
npm config set registry https://registry.npmjs.org
其他
- 查看当前npm配置
npm config get
- 查看npm源地址
npm config get registry