npm 和 yarn 缓存清理,镜像源的查看与修改

参考:https://blog.csdn.net/weixin_45115705/article/details/90516857

npm cache clean --force

yarn cache clean

使用npm root -g查询npm全局安装的路径
默认安装在 C:\Users\lenovo15\AppData\Roaming\npm\node_modules

//全局安装
yarn global dir

yarn xxxx 或 yarn global add xxx

欢迎关注微信公众号:【 全栈攻略 】

 `前端开发使用 npm 或者 yarn 下载过程中可能会下载非常慢甚至报错,我们可以配置国内 淘宝镜像 来解决这个问题。具体方法如下:` 


NPM

查询当前镜像

 `npm get registry` 

设置为淘宝镜像

 `npm config set registry http://registry.npm.taobao.org/` 


设置回默认的官方镜像

 `npm config set registry https://registry.npmjs.org/` 


同理 YARN

查询当前镜像

`yarn config get registry` 


设置为淘宝镜像

`yarn config set registry http://registry.npm.taobao.org/` 



设置回默认的官方镜像

`yarn config set registry https://registry.yarnpkg.com` 


设置成功都有类似下面的输出

`yarn config v1.16.0
success Set "registry" to "http://registry.npm.taobao.org/".
Done in 0.05s.` 



posted @ 2022-11-11 22:04  狂客  阅读(248)  评论(0编辑  收藏  举报