共计 749 个字符,预计需要花费 2 分钟才能阅读完成。
默认的官方镜像:https://registry.npmjs.org,切换国内淘宝镜像,访问下载更快。
一、npm 设置
npm config set registry https://registry.npmmirror.com/
2、查看源
npm config get registry
3、切回官方镜像
npm config set registry https://registry.npmjs.org/
4、npm 临时使用
上面那种设置是全局的,以后每次都会自动读取已经设置好的源,如果只是一次性使用,可以使用下面的命令
npm --registry https://registry.npmmirror.com install XXX(模块名)
二、yarn 设置
yarn config set registry https://registry.npmmirror.com
2、查看源
yarn config get registry
3、切回官方镜像
yarn config set registry https://registry.yarnpkg.com
三、pnpm 设置
pnpm config set registry https://registry.npmmirror.com
2、查看源
pnpm config get registry
3、切回官方镜像
pnpm config set registry https://registry.npmjs.org
四、常见问题
npm 修改了下载源,仍然是之前的下载源。或者下载失败、下载到某处停止不动。可以进行如下操作。
(1)清除缓存
(2)将对应项目中的 node_modules 文件夹以及 package-lock.json 文件删除。
(3)执行安装 + 需要的下载源。
npm cache clean -f
原文地址: npm、yarn、pnpm 设置国内镜像源
正文完