Skip to content

Instantly share code, notes, and snippets.

@miZyind
Last active October 16, 2020 07:37
Show Gist options
  • Save miZyind/6e78bb46159ce3126d5afb9706fb760d to your computer and use it in GitHub Desktop.
Save miZyind/6e78bb46159ce3126d5afb9706fb760d to your computer and use it in GitHub Desktop.
Calculate the disk usage of node_modules folder of each project and sort the big ones at the top
find . -name node_modules -exec du -sh {} \; -prune | sort -rh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment