npm切换淘宝最新镜像

我们有时候使用npm下载依赖的时候,老是卡住动不了。这个时候我们可以考虑切换成淘宝的镜像

1. 查看镜像

我们可以通过下面命令来查看当前npm的镜像地址

bash 复制代码
npm config get registry

如果显示npmjs的,就代表是默认镜像

2. 设置镜像

bash 复制代码
#旧镜像 不推荐使用
npm config set registry https://registry.npm.taobao.org

#新的镜像地址 推荐使用
npm config set registry https://registry.npmmirror.com

换到新的镜像,是不是感觉下载速度飞快了呢

3. 还原旧镜像

如果我们想用官方的镜像,可以使用下面命令

go 复制代码
npm config set registry https://registry.npmjs.org
相关推荐
樊南1 天前
npm安装electron依赖时卡顿,下载不下来
前端·electron·npm
没头发的卓卓2 天前
pnpm--他简直是超人!
前端·npm·前端工程化
changingshow3 天前
vue create 创建项目 提示 Failed to check for updates 淘宝 NPM 镜像站喊你切换新域名啦
javascript·vue.js·npm
【D'accumulation】3 天前
NPM国内镜像源多选择与镜像快速切换工具(nrm)介绍
前端·npm·node.js
野生派蒙3 天前
NVM:安装配置使用(详细教程)
前端·npm·node.js
Asurplus3 天前
【VUE】13、安装nrm管理多个npm源
npm·node.js·nvm·nrm
跳跳的向阳花4 天前
01、NodeJS学习笔记,第一节:Node.js初识与内置模块
学习·npm·node.js·模块化··内置模块·模块加载机制
m0_748247554 天前
从0-1逐步搭建一个前端脚手架工具并发布到npm
前端·npm·node.js
Lee_Yu_Fan5 天前
包管理器NPM
npm·node.js
前端热爱者5 天前
vue-element-admin npm install 安装失败,tui-editor更名导致
前端·vue.js·npm·tui-editor