npm镜像加速
npm镜像加速
推荐通过cnpm使用,且镜像设置为:https://registry.nlark.com/
临时使用
命令后直接加:--registry https://registry.npm.taobao.org
- 例如:
npm install expres --registry https://registry.npm.taobao.org
永久使用
打开终端,输入:npm config set registry https://registry.npm.taobao.org
- 验证配置是否成功,可以终端输入:
npm config get registry
或npm info express
通过cnpm使用
打开终端,输入:npm install -g cnpm --registry=https://registry.npm.taobao.org
- 使用:
cnpm install express
删除镜像
打开终端,输入:npm config set registry https://registry.npmjs.org
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 小新's Blog!
评论
Va