Testing concepts, building smalls apps and just brainstorming ideas led my computer to accumulate garbage very quickly. Clear your node_modules recursively by running this command.
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +
Don't just trust me. Learn what it does:
- find . Instructs the find program to search for files in the current directory ..
- -name "node_modules" Instructs the find program to search for files named “node_modules”.
- -type d Instructs the find program to only look for file directories named “node_modules”.