Last Updated: February 25, 2016
·
668
· angelbotto

delete all node_modules folders recursively

if you need remove all node_modules folders in a specific path run this command in your terminal.

find . -type d -name node_modules -exec rm -rf {} +

where dot ( . ) its your path to scan 😬

your welcome.

thanks @davidpelaez for the snippet