Posts

Showing posts from June, 2019

Delete node_modules folder on Windows machine recursively

This command will find & delete the node_modules folder from the current directory for /d /r . %d in (node_modules) do @if exist "%d" rd /s/q "%d"