Effectively Remove all Folders

With this command you can recursively remove all node_modules folders within a path.

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