前端依赖下载速度过慢解决方法,nrm 镜像管理工具

npm 默认镜像 :https://registry.npmjs.org/

问题

使用 npm install 安装依赖的时候,受网络的限制,速度会很慢。

解决

使用国内镜像代理。

nrm

nrm 是镜像源管理工具;

1. 安装 nrm
powershell 复制代码
npm install nrm --global
powershell 复制代码
# 查看镜像源列表
nrm ls

淘宝原镜像 https://registry.npm.taobao.org 已更改为 https://registry.npmmirror.com

2. 测试当前环境下,哪个镜像源速度最快。
powershell 复制代码
nrm test
3. 切换镜像源
powershell 复制代码
npm config get registry # 查看当前镜像源
nrm use taobao # 等价于 npm config set registry https://registry.npmmirror.com

使用 cnpmyarn

powershell 复制代码
npm install -g cnpm --registry=https://registry.npmmirror.com
powershell 复制代码
cnpm install -g yarn
阿里云针对淘宝镜像更改的说明


npmmirror 中国镜像站

相关推荐
C语言魔术师16 分钟前
【小游戏篇】三子棋游戏
前端·算法·游戏
匹马夕阳1 小时前
Vue 3中导航守卫(Navigation Guard)结合Axios实现token认证机制
前端·javascript·vue.js
你熬夜了吗?1 小时前
日历热力图,月度数据可视化图表(日活跃图、格子图)vue组件
前端·vue.js·信息可视化
桂月二二8 小时前
探索前端开发中的 Web Vitals —— 提升用户体验的关键技术
前端·ux
hunter2062069 小时前
ubuntu向一个pc主机通过web发送数据,pc端通过工具直接查看收到的数据
linux·前端·ubuntu
qzhqbb9 小时前
web服务器 网站部署的架构
服务器·前端·架构
刻刻帝的海角9 小时前
CSS 颜色
前端·css
九酒9 小时前
从UI稿到代码优化,看Trae AI 编辑器如何帮助开发者提效
前端·trae
浪浪山小白兔10 小时前
HTML5 新表单属性详解
前端·html·html5
lee57610 小时前
npm run dev 时直接打开Chrome浏览器
前端·chrome·npm