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

后端 未结 13 1246
别那么骄傲
别那么骄傲 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条回答
  •  -上瘾入骨i
    2020-12-02 04:19

    I think you're looking for npm prune

    npm prune [ [

    This command removes "extraneous" packages. If a package name is provided, then only packages matching one of the supplied names are removed.

    Extraneous packages are packages that are not listed on the parent package's dependencies list.

    See the docs: https://docs.npmjs.com/cli/prune

提交回复
热议问题