1. 获取 npm 配置">1. 获取 npm 配置2. 设置 npm 配置">2. 设置 npm 配置3. 更改 npm 镜像地址">3. 更改 npm 镜像地址由于 npmjs.com 是国外的网站,大多数时候下载软件包的速度会比较慢,如何解决呢? 可以通过配置的方式更改 npm 工具的下载地址。 1. 获取 npm 配置npm config list -l —json -l 列表所有默认配置选项 —json 以 json 格式显示配置选项 2. 设置 npm 配置获取 npm 下载地址: npm config get registry 获取 npm 用户配置文件: npm config get userconfig 3. 更改 npm 镜像地址npm config set registry https://registry.npm.taobao.org npm config set registry https://registry.npmjs.org/ cat .npmrc