How to Delete node_modules - Deep Nested Folder in Windows

前端 未结 30 1002
逝去的感伤
逝去的感伤 2020-12-02 03:25

Upon trying to remove the node_modules directory created by npm install:

The source file name(s) are larger than is su

30条回答
  •  既然无缘
    2020-12-02 04:07

    On Windows my go to solution is using the rmdir command:

    rd /S .\node_modules\

    If it fails the first time -- try one more time. Also check if you have running scripts currently using the modules (npm run serve or similar).

提交回复
热议问题