This command is find and remove all node_modules on ./ path
$ find . -name node_modules -type d -print0 | xargs -0 rm -rf --This command is find and remove all node_modules on ./ path
$ find . -name node_modules -type d -print0 | xargs -0 rm -rf --
Another alternative way: