Skip to content

Instantly share code, notes, and snippets.

@jonasfroeller
Created June 28, 2023 16:20
Show Gist options
  • Save jonasfroeller/056f25200ef35dcf5e390fbc9b009b6c to your computer and use it in GitHub Desktop.
Save jonasfroeller/056f25200ef35dcf5e390fbc9b009b6c to your computer and use it in GitHub Desktop.
delete all node_modules folders on your system (Windows)
@echo off
setlocal EnableDelayedExpansion
for /r %%d in (node_modules) do (
rd /s /q "%%d"
echo deleted "%%d"
)
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment