执行npm install
提示 1 package is looking for funding
, 执行了 npm fund
重新执行npm install
仍然出现该提示。该提示不是报错,而是开发者寻求捐赠支持。 可以使用npm install --no-fund
跳过该提示。文章来源:https://www.toymoban.com/news/detail-510562.html
jiangwujie@localhost woniu-chain % npm install vorpal --save
up to date in 835ms
1 package is looking for funding
run `npm fund` for details
jiangwujie@localhost woniu-chain % npm fund
woniu-chain@1.0.0
└── https://github.com/sponsors/ljharb
└── minimist@1.2.7
jiangwujie@localhost woniu-chain % npm install vorpal --save
up to date in 804ms
1 package is looking for funding
run `npm fund` for details
jiangwujie@localhost woniu-chain % npm install vorpal --save --no-fund
up to date in 809ms
参考文档:https://www.cnblogs.com/sjj33sda/p/13952527.html文章来源地址https://www.toymoban.com/news/detail-510562.html
到了这里,关于npm install 提示 “ 1 package is looking for funding“的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!