npm install 提示 “ 1 package is looking for funding“
npm install 提示 " 1 package is looking for funding"
·
执行npm install 提示 1 package is looking for funding, 执行了 npm fund 重新执行npm install 仍然出现该提示。该提示不是报错,而是开发者寻求捐赠支持。 可以使用npm install --no-fund 跳过该提示。
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
更多推荐




所有评论(0)