解决npm安装时出现run `npm audit fix` to fix them, or `npm audit` for details

时间:2024-04-07 18:02:17

在VSCode中,在终端中运行 npm install,出现错误,报错内容如下:

解决npm安装时出现run `npm audit fix` to fix them, or `npm audit` for details


1、第一种解决办法,按照顺序执行下面的步骤

1、npm audit fix
2、npm audit fix --force
3、npm audit

解决npm安装时出现run `npm audit fix` to fix them, or `npm audit` for details

在第三部有可能出现是:found 10 vulnerabilities 等情况,不用担心

上面步骤操作完,继续执行 npm install  ,出现一下情况,说明成功解决npm安装时出现run `npm audit fix` to fix them, or `npm audit` for details

 

进行执行代码:npm run dev 说明项目启动成功,可以对项目进行代码编辑了

解决npm安装时出现run `npm audit fix` to fix them, or `npm audit` for details

2、第二种解决办法

删除已经安装的:node_modules 和 package-lock.json
修改 package.json 格式如下
npm audit fix --force
npm instal