Lilong Zhang / npm 相关

Created Mon, 14 Feb 2022 15:19:00 +0000
171 Words

查看 npm 配置

npm config ls -l

npm 换源

默认安装源为https://registry.npmjs.org,更换为国内镜像地址之后,可以加快下载速度。

以下两种方式都可以。推荐第二种方式,一次设置,所有项目生效。

  1. 下载依赖库时指定源: npm install aws-amplify --registry=https://registry.npmmirror.com
  2. 全局修改默认源: npm config set registry https://registry.npmmirror.com

检查当前源: npm config get registry

npm 查看全局安装路径

npm root -g

pnpm

  1. 安装 npm install -g pnpm
  2. 检查存储路径 pnpm store path
  3. 设置镜像地址 pnpm set registry "https://registry.npmmirror.com"