每次我 运行 命令 npm install highcharts --save 时,如何消除漏洞
How can I remove vulnerabilities, everytime I run the command npm install highcharts --save
当我执行命令 npm install highcharts --save 时,我总是得到这样的结果:
我怎样才能让它成为0漏洞?
C:\Users\bagal\Desktop\FirstChart>npm install highcharts --save
added 1 package, removed 1 package, and audited 901 packages in 1m
92 packages are looking for funding
run `npm fund` for details
6 vulnerabilities (3 low, 3 moderate)
To address all issues (including breaking changes), run:
npm audit fix --force
Run `npm audit` for details.
除了提示提示的 运行 npm audit fix 之外,您无能为力。 NPM 是一个包管理器,这意味着它所做的只是下载所需的包以使您的项目正常运行,如果特定包存在漏洞,则由包的创建者来修复它。
当我执行命令 npm install highcharts --save 时,我总是得到这样的结果: 我怎样才能让它成为0漏洞?
C:\Users\bagal\Desktop\FirstChart>npm install highcharts --save
added 1 package, removed 1 package, and audited 901 packages in 1m
92 packages are looking for funding
run `npm fund` for details
6 vulnerabilities (3 low, 3 moderate)
To address all issues (including breaking changes), run:
npm audit fix --force
Run `npm audit` for details.
除了提示提示的 运行 npm audit fix 之外,您无能为力。 NPM 是一个包管理器,这意味着它所做的只是下载所需的包以使您的项目正常运行,如果特定包存在漏洞,则由包的创建者来修复它。