npm

  1. # 查询依赖安装路径前缀
  2. npm prefix -g
  3. # 修改 npm 安装路径前缀
  4. npm config set prefix "xxxx"
  5. # 修改 cache 路径
  6. npm config set cache "xxx"

yarn

  1. # 查询依赖安装路径(通过找 bin 目录来找依赖路径)
  2. yarn global bin
  3. # 修改安装路径前缀
  4. yarn config set prefix "xxx"
  5. # 修改 global 安装路径
  6. yarn config set global-folder "xxx"
  7. # 修改 cache 路径
  8. yarn config set cache-folder "xxx"