when you have a specific folder to store all react projects, then there will be lots of spaces being occupied by the node_modules folder.
we can easily execute the following command to free up the space for any projects not currently working on.
E:\Code
FOR /d /r . %d in (node_modules) DO @IF EXIST "%d" rm -rf "%d"
No comments:
Post a Comment