Remove any node_modules
folder in the given directory.
Or globally if you wish.
npm i -g rm-nm
rm-nm [target-folder] [args]
rm-nm ./code/
-s // only node_modules with package.json siblings
-ss // only node_modules with package.json && package-lock.json siblings
Because find . -name "node_modules" -exec rm -rf '{}' +
in the shell is too easy.
And of course because: