【VUE】npm install报错“found * vulnerabilities( * high), run npm audit fix, or npm audit”相关问题的解决

前言

一个vue2的项目,从mac上传到gitee,然后windows clone之后npm install报错。

原因

核心问题是node版本问题,windows11下载了node v16,然后版本过高导致各种无法resolve。需要降级为node v14版本。

解决

  1. 控制面板,卸载,node
    【VUE】npm install报错“found * vulnerabilities( * high), run npm audit fix, or npm audit”相关问题的解决_第1张图片

  2. node官网,下载老版本
    【VUE】npm install报错“found * vulnerabilities( * high), run npm audit fix, or npm audit”相关问题的解决_第2张图片

  3. 关闭cmd,关闭webstorm(项目),然后再重新打开,node -v查看版本,如果是14那就ok

  4. npm install还是会有一些少量版本高或低的问题,但是node_modules成功安装,npm run serve也可以成功了

其他

问题的核心是node的版本问题,但是报错会有各种各样的
比如:Error: Cannot find module '@vue/cli-plugin-eslint'报错
比如:Error: Cannot find module '@vue/cli-plugin-babel'报错
比如:Error: Cannot find module '@vue/cli-plugin-babel/preset'报错
比如:node-sass报错
等等
但只要node版本回退,问题就全都解决了,根本不用去管这些报错,我花了好多时间尝试去解决这些问题,事实证明并不能让项目跑起来

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