How to Delete node_modules - Deep Nested Folder in Windows

前端 未结 30 1015
逝去的感伤
逝去的感伤 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 03:58

    What worked for me was:

    1. closed the node manager console
    2. closed the Atom (visual studio code ) dev environment you are in.
    3. then delete the node_modules

      npm install rimraf -g 
      rimraf node_modules
      

提交回复
热议问题