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
[email protected]
└── https://github.com/sponsors/ljharb
    └── [email protected]

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

猜你喜欢

转载自blog.csdn.net/wejack/article/details/128525347