你好,我是悦创。
我的博客网站阅读更佳:https://bornforthis.cn/blog/vuepress/08.html
默认的官方镜像:https://registry.npmjs.org,切换国内淘宝镜像,访问下载更快。
1. npm 设置
::: code-tabs
- 查看源
bash
npm config get registry
- 设置淘宝源
bash
npm config set registry https://registry.npmmirror.com/
- 切回官方镜像
bash
npm config set registry https://registry.npmjs.org/
- npm 临时使用
bash
# 上面那种设置是全局的,以后每次都会自动读取已经设置好的源,如果只是一次性使用,可以使用下面的命令
npm --registry https://registry.npmmirror.com install XXX(模块名)
2. yarn 设置
- 查看源
bash
yarn config get registry
- 设置淘宝源
bash
yarn config set registry https://registry.npmmirror.com
- 切回官方镜像
bash
yarn config set registry https://registry.yarnpkg.com
3. pnpm 设置
- 查看源
bash
pnpm config get registry
- 设置淘宝源
bash
pnpm config set registry https://registry.npmmirror.com
- 切回官方镜像
bash
pnpm config set registry https://registry.npmjs.org
4. 常见问题
npm 修改了下载源,仍然是之前的下载源。或者下载失败、下载到某处停止不动。可以进行如下操作。
- 清除缓存
- 将对应项目中的
node_modules
文件夹以及package-lock.json
文件删除。 - 执行安装 + 需要的下载源。