利用nodejs推荐(最方便,删除速度超快):输入
npm install rimraf -g
rimraf node_modules
在linux下可以使用rm -rf node_modules来快速删除文件夹。
rm -rf node_modules
在windows也有类似命令。
在你的项目目录下打开cmd ,使用rd /s /q node_modules可以快速删除
rd /s /q node_modules
如果是powershell,使用rd -r node_modules命令
rd -r node_modules