DEV Community

Discussion on: npkill - The solution to deleting node_modules easily, with style

Collapse
 
pabloc profile image
PabloC

On Mac just:

find . -name "node_modules" -exec rm -rf '{}' +'

would do the same I think.