windows quickly delete a large number of small files nodejs node_modules


Let me talk about the fastest way first: 

npm install rimraf -g        rimraf node_modules
windows下:
rd /s /q node_modules

Under linux:

rm -rf node_modules

powershell下:
rd -r node_modules

Guess you like

Origin blog.csdn.net/csd_nuser/article/details/111093729