npm 是 Node.js 的包管理工具,有时候在使用 npm 安装包的时候,可能会由于网络问题导致下载速度较慢或失败。为了解决这个问题,可以切换到国内的镜像站点。
查看默认镜像源
npm config get registry
切换国内镜像源
首先整理了两个常用的npm镜像源,主要是我觉得好用的。
# 淘宝镜像(速度较快,稳定可靠)
https://registry.npm.taobao.org/
# 华为云镜像(提供稳定的下载速度)
https://mirrors.huaweicloud.com/repository/npm/
更换镜像源命令如下。
格式:
npm config set registry 镜像地址
例:
npm config set registry https://registry.npm.taobao.org/
查看现在使用的镜像源。
npm config get registry
恢复到官方镜像源
npm config set registry https://registry.npmjs.org/
© 版权声明
THE END
暂无评论内容