npm
# 查询依赖安装路径前缀
npm prefix -g
# 修改 npm 安装路径前缀
npm config set prefix "xxxx"
# 修改 cache 路径
npm config set cache "xxx"
yarn
# 查询依赖安装路径(通过找 bin 目录来找依赖路径)
yarn global bin
# 修改安装路径前缀
yarn config set prefix "xxx"
# 修改 global 安装路径
yarn config set global-folder "xxx"
# 修改 cache 路径
yarn config set cache-folder "xxx"