查看基本配置
npm config list

查看所有配置
npm config list -l

临时生效修改npm下载的地址(国内淘宝镜像地址)
npm --registry https://registry.npm.taobao.org install express

永久生效修改npm下载的地址(国内淘宝镜像地址)
npm config set registry https://registry.npm.taobao.org

npm 安装包路径配置
npm config set cache "D:\testing\npm\node_global"

npm 缓存路径配置
npm config set prefix "D:\testing\npm\npm_cache"

npm config set cwd "D:\testing\npm\npm_cwd"

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-06-22
  • 2021-08-09
  • 2021-10-16
  • 2021-05-29
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-08
  • 2022-12-23
  • 2021-07-12
  • 2021-11-17
相关资源
相似解决方案