JavaScript - necrifede/my-dev-setup GitHub Wiki

Letters with diacritics

Remove all node_modules

Use it carefully. from https://dev.to/trilon/how-to-delete-all-nodemodules-folders-on-your-machine-43dh

Mac / Linux:

$ cd documents
$ find . -name 'node_modules' -type d -prune -print -exec rm -rf '{}' \;

Windows:

$ cd documents
$ FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" rm -rf "%d"

Powershell Users:

Get-ChildItem -Path "." -Include "node_modules" -Recurse -Directory | Remove-Item -Recurse -Force