How to Delete node_modules - Deep Nested Folder in Windows

前端 未结 30 1014
逝去的感伤
逝去的感伤 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:14

    I had a similar problem and RD didn't work, for some unknown reason.

    NPM can get rid of its own mess though, so if you do npm uninstall [module-name] for each directory in node_modules, you'll get rid of them.

    (I'll look up how to batch loop this later, for those who have lots of dependencies.)

提交回复
热议问题