首页 前端知识 快速删除node_modules和.pnpm-store文件夹

快速删除node_modules和.pnpm-store文件夹

2024-06-14 09:06:57 前端知识 前端哥 385 996 我要收藏

直接在文件资源管理器里面删除node_modules和.pnpm-store文件夹很慢(因为小文件太多,删除不够并行),有几种方法快速删除。

node_modules

1. remove-node-modules

npm install -g remove-node-modules
remove-node-modules

2. rimraf

npm install -g rimraf
rimraf node_modules

3. CMD

rd /s /q node_modules

4. Powershell

rm -rf node_modules

.pnpm-store

1

精简

pnpm store prune

2

定位

pnpm store path

删除

rm -rf .pnpm-store

参考

https://blog.csdn.net/lijingjingjing22/article/details/116118701
https://blog.csdn.net/RingoH/article/details/117957190
https://github.com/orgs/pnpm/discussions/4413

转载请注明出处或者链接地址:https://www.qianduange.cn//article/12117.html
标签
评论
发布的文章

fastjson升级为fastjson2

2024-06-20 09:06:18

protobuf对象与JSON相互转换

2024-06-20 09:06:14

NVM 及 PNPM 安装

2024-06-20 09:06:01

npm有哪些插件包??

2024-06-20 09:06:01

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!