# yarn 和 npm - 清理缓存包
# yarn
一、yarn cache dir
运行命令会显示当前缓存目录,默认是C盘
二、yarn cache clean [<module_name...>]
运行命令会清理缓存包,若未指定包名则会全部清理,指定则清理指定包。
注意:要先清理包在重新配置目录,否则会使之前的缓存无法清除
三、yarn config set cache-folder
设置当前缓存目录
# npm
npm 清理方式基本相同
npm config get cache // 查看缓存目录
npm cache clean --force // 清除缓存
npm config set cache "F:\ProgramFile\nodejs\node_module\node_cache" // 设置缓存目录
npm cache verify // 验证缓存文件夹的内容, 删除不需要的, 并验证缓存索引和所有缓存数据的完整性
1
2
3
4
2
3
4