查看 npm 配置
npm config ls -l
npm 换源
默认安装源为https://registry.npmjs.org
,更换为国内镜像地址之后,可以加快下载速度。
以下两种方式都可以。推荐第二种方式,一次设置,所有项目生效。
- 下载依赖库时指定源:
npm install aws-amplify --registry=https://registry.npmmirror.com
- 全局修改默认源:
npm config set registry https://registry.npmmirror.com
检查当前源:
npm config get registry
npm 查看全局安装路径
npm root -g
pnpm
- 安装
npm install -g pnpm
- 检查存储路径
pnpm store path
- 设置镜像地址
pnpm set registry "https://registry.npmmirror.com"