How to clean node_modules folder of packages that are not in package.json?

后端 未结 13 1298
别那么骄傲
别那么骄傲 2020-12-02 03:58

Assume I install project packages with npm install that looks into package.json for modules to be installed. After a while I see that I don\'t need

13条回答
  •  被撕碎了的回忆
    2020-12-02 04:34

    Due to its folder nesting Windows can’t delete the folder as its name is too long. To solve this, install RimRaf:

    npm install rimraf -g
    
    rimraf node_modules
    

提交回复
热议问题