Member-only story
Remove all node_module folders (or any type of folder/file)
find . -name "node_modules" -exec rm -rf '{}' +
That will delete the folder and files even if there is a space in the name.
That saved a lot memory for node projects which you had not touched in a while.
If you need the node modules back, just easily simply run
npm install