What does 'x packages are looking for funding' mean when running `npm install`?

前端 未结 6 2118
谎友^
谎友^ 2020-12-01 03:04

I usually get \"x packages are looking for funding.\" when running npm install on a react project. Any idea what that

6条回答
  •  盖世英雄少女心
    2020-12-01 03:58

    npm fund []
    

    This command retrieves information on how to fund the dependencies of a given project. If no package name is provided, it will list all dependencies that are looking for funding in a tree-structure in which are listed the type of funding and the url to visit.
    The message can be disabled using: npm install --no-fund

提交回复
热议问题