当前位置:   article > 正文

npm、yarn、pnpm设置国内镜像源_yarn 设置镜像

yarn 设置镜像

默认的官方镜像:https://registry.npmjs.org,切换国内淘宝镜像,访问下载更快。
一、npm设置

npm config set registry https://registry.npmmirror.com/
  • 1

2、查看源

npm config get registry
  • 1

3、切回官方镜像

npm config set registry https://registry.npmjs.org/
  • 1

4、npm临时使用
上面那种设置是全局的,以后每次都会自动读取已经设置好的源,如果只是一次性使用,可以使用下面的命令

npm --registry https://registry.npmmirror.com install XXX(模块名)
  • 1

二、yarn设置

yarn config set registry https://registry.npmmirror.com
  • 1

2、查看源

yarn config get registry
  • 1

3、切回官方镜像

yarn config set registry https://registry.yarnpkg.com
  • 1

三、pnpm设置

pnpm config set registry https://registry.npmmirror.com
  • 1

2、查看源

pnpm config get registry
  • 1

3、切回官方镜像

pnpm config set registry https://registry.npmjs.org
  • 1

四、常见问题
npm修改了下载源,仍然是之前的下载源。或者下载失败、下载到某处停止不动。可以进行如下操作。
(1)清除缓存
(2)将对应项目中的node_modules文件夹以及package-lock.json文件删除。
(3)执行安装 + 需要的下载源。

npm cache clean -f
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/996681
推荐阅读
相关标签
  

闽ICP备14008679号