Skip to content

Instantly share code, notes, and snippets.

@lzehrung
Created May 10, 2024 17:44
Show Gist options
  • Save lzehrung/700cd3d283644d501fa82afe3703ee33 to your computer and use it in GitHub Desktop.
Save lzehrung/700cd3d283644d501fa82afe3703ee33 to your computer and use it in GitHub Desktop.
powershell remove node_modules recursively
Get-ChildItem -Path "." -Include "node_modules" -Recurse -Directory | Remove-Item -Recurse -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment