node_modules一般有很多碎文件,删除的时候很慢,在linux下可以使用rm -rf node_modules来快速删除文件夹,在windows也有类似命令。 在你的项目目录下打开cmd ,使用rd /s /q node_modules 可以快速删除 如果是powershell,使用rd -r node_modules命令 从长远来看,买个mac才是王道,windows果然很操蛋。。。
node_modules
rm -rf node_modules
rd /s /q node_modules
rd -r node_modules