Skip to content

Instantly share code, notes, and snippets.

View jeswinsimon's full-sized avatar

Jeswin Simon jeswinsimon

View GitHub Profile
@jikkujose
jikkujose / node_modules.sh
Last active July 30, 2020 14:11
Manage node_modules. See how much storage they consume & remove them.
alias nm_weight="find . -name 'node_modules' -type d -prune -print0 | xargs -0 du -chs"
alias nm_delete="find . -name 'node_modules' -type d -prune -print0 | xargs -0 rm -rf"
[~/Projects] $ nm_weight
129M ./dojo/02 - Game of Life/username/typescript/node_modules
133M ./dojo/03 - Mandelbrot Set/username/node_modules
406M ./BCProject/code/mobile/BCProject/node_modules
224M ./main/node_modules
319M ./count_tracker/node_modules
236M ./SB/exercism/username/reasonml/two-fer/node_modules