Skip to content

Instantly share code, notes, and snippets.

@abdulhadad
Last active September 19, 2022 05:28
Show Gist options
  • Save abdulhadad/fc508cf427e2e65aab3ae53461c35bb4 to your computer and use it in GitHub Desktop.
Save abdulhadad/fc508cf427e2e65aab3ae53461c35bb4 to your computer and use it in GitHub Desktop.
Hapus semua node_modules

Perintah

FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" echo %d"

FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" rd /s /q "%d"

# linux/mac 
find . -name "node_modules" -type d -prune | xargs du -chs # list
find . -name "node_modules" -type d -prune -exec rm -rf '{}' +

Reference

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment