Skip to content

Instantly share code, notes, and snippets.

@jesusgoku
Last active July 8, 2020 20:25
Show Gist options
  • Save jesusgoku/7b1ec2bdc280eb15cf55120381adcf4c to your computer and use it in GitHub Desktop.
Save jesusgoku/7b1ec2bdc280eb15cf55120381adcf4c to your computer and use it in GitHub Desktop.
Check node_modules size
find . -name node_modules -type d -prune -print0 \
| xargs -0 -n1 du -s -k \
| awk '{ s += $1 } END { printf "%.1f MB",s / 1024 }'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment