Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save oakwoodgates/375cae1974fc3e0f62cc05bb94a5ed8c to your computer and use it in GitHub Desktop.
Save oakwoodgates/375cae1974fc3e0f62cc05bb94a5ed8c to your computer and use it in GitHub Desktop.
Remove /node_modules/* from Windows with Command Prompt
FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" rmdir /Q/S "%d"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment