前端开发:项目运行npm install 提示XXX packages are looking for funding run `npm fund` for details的解决方法

分享一个去年遇到的问题,作为总结性的来分享一下,方便有需要的人查看使用,具体操作是这样的:更新了依赖,更新完之后,运行npm:

命令行:npm install

前端开发:项目运行npm install 提示XXX packages are looking for funding run `npm fund` for details的解决方法_第1张图片

然后提示如下信息:

35 packages are looking for funding

run `npm fund` for details

 

found 18 vulnerabilities (3 low, 9 moderate, 6 high)

run `npm audit fix` to fix them, or `npm audit` for details

 

上述提示的问题也不是错误,具体的解决步骤如下所示:

1、其实上面的提示也已经给出了解决或者排除问题的方法,那就是紧接着上面提示的下面,输入命令行:

npm fund    

2、然后可以查看提示具体的提示内容,是依赖的打赏捐赠提示,然后再接着输入一行命令:

npm run dev

3、回车就可以了,一般都是开发者捐赠支持的提示,打开一个github的链接之后,会显示需要打赏捐赠的信息,此时如果不想捐赠或者跳过这个提示的话,直接在后面加--no-fund即可,具体命令如下:

npm install --no-fund

但是本着打赏自愿,支持依赖提供者,还是多少可以支持一下,这样才能给开发者带来生存下去的信心和更大的原创开发动力。

 

以上就是本章全部内容,欢迎关注三掌柜的微信公众号“程序猿by三掌柜”,三掌柜的新浪微博“三掌柜666”,欢迎关注!

三掌柜的微信公众号:

前端开发:项目运行npm install 提示XXX packages are looking for funding run `npm fund` for details的解决方法_第2张图片

三掌柜的新浪微博:

前端开发:项目运行npm install 提示XXX packages are looking for funding run `npm fund` for details的解决方法_第3张图片

 

你可能感兴趣的:(前端开发,vue.js,前端)