.npm 下的缓存文件太多怎么办?.npm 下缓存的包长时间未清理,占用空间太大怎么办?
linux 系统里,查看磁盘占用情况:df -h
1.查看单个目录磁盘占用情况du -sh /指定目录
2.查看所有目录的磁盘占用情况for i in `ls -a`;do du -sh $i;done
从上图我们可以看到,.npm 下的文件占用了18G 的容量。这个是我们测试服务器上的信息,由于有很长的时间都没有去做清理,所以缓存文件非常多。
直接把缓存文件干掉? 这样所有的依赖包都需要重新下载!
npm 针对缓存的操作提供了以下的方法(npm-cache):
* add: Add the specified packages to the local cache. This command is primarily intended to be used internally by npm, but it can provide a way to add data to the local installation cache explicitly.[]
* clean: Delete all data out of the cache folder. Note that this is typically unnecessary, as npm’s cache is self-healing and resistant to data corruption issues.[@]
* npm cache verify* verify: Verify the contents of the cache folder, garbage collecting any unneeded data, and verifying the integrity of the cache index and all cached data.描述我没有做翻译,英语好的应该能够看得更清晰。
如上,我们可以使用npm cache clean --force
来清除所有的缓存信息,但是如上面的描述所说,这种操作并不是必要的。
我们也可以使用npm chache verify
来进行检查处理。它会检验缓存文件,回收掉任何不需要的文件。
以下结果是二次运行 npm cache verify
的输出:
我们看到,从一开始的18G
,通过两次清理之后,剩下991M
还有效的缓存数据。我们也不用非得把所有的缓存数据都删掉!!
整理了一套《前端大厂面试宝典》,包含了HTML、CSS、JavaScript、HTTP、TCP协议、浏览器、VUE、React、数据结构和算法,一共201道面试题,并对每个问题作出了回答和解析。
有需要的小伙伴,可以点击文末卡片领取这份文档,无偿分享
部分文档展示:
文章篇幅有限,后面的内容就不一一展示了
有需要的小伙伴,可以点下方卡片免费领取