vue2老版本 npm install 安装失败_安装卡主

vue2老版本 npm install 安装失败_安装卡主

特别说明:vue2老版本安装慢、运行慢,建议升级vue3+element plus+ vite

解决方案1:

第一步、修改npm 镜像为国内镜像

使用淘宝镜像:

cs 复制代码
npm config set registry https://registry.npmmirror.com

清除缓存:

cs 复制代码
npm cache clean --force

查看镜像配置是否成功:

cs 复制代码
npm config set registry

第二步、升级 vue-core-js版本

"core-js": "^3.6.5" 升级版本直接修改版本号

javascript 复制代码
{
  "name": "back",
  "version": "0.1.0",
  "private": true,
  "scripts": {
    "serve": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
    "build": "set NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
    "lint": "vue-cli-service lint"
  },
  "dependencies": {
    "core-js": "^3.6.5",
    "element-ui": "^2.15.0",
    "vue": "^2.6.11",
    "vue-clipboard3": "^2.0.0",
    "vue-router": "^3.5.3",
    "vue-ueditor-wrap": "^2.4.4"
  },
  "devDependencies": {
    "@vue/cli-plugin-babel": "~4.5.0",
    "@vue/cli-plugin-eslint": "~4.5.0",
    "@vue/cli-plugin-router": "^4.5.11",
    "@vue/cli-service": "~4.5.0",
    "babel-eslint": "^10.1.0",
    "eslint": "^6.7.2",
    "eslint-plugin-vue": "^6.2.2",
    "vue-template-compiler": "^2.6.11"
  },
  "eslintConfig": {
    "root": true,
    "env": {
      "node": true,
      "browser": true,
      "jquery": true
    },
    "extends": [
      "plugin:vue/essential",
      "eslint:recommended"
    ],
    "parserOptions": {
      "parser": "babel-eslint"
    },
    "rules": {
      "no-console": "off",
      "no-unused-vars": "off",
      "no-undef": "off",
      "generator-star-spacing": "off",
      "no-tabs": "off",
      "no-irregular-whitespace": "off",
      "no-debugger": "off",
      "no-redeclare": "off",
      "no-inner-declarations": "off",
      "no-unused-labels": "off",
      "vue/no-unused-vars": "off",
      "vue/no-unused-components": "off"
    }
  },
  "browserslist": [
    "> 1%",
    "last 2 versions",
    "not dead"
  ]
}

删除文件 package-lock.json

第三步,重新执行安装命令

javascript 复制代码
npm  i

安装时间还是比较长,大约10分钟左右;

解决方案2:

还有一种方案,可以复制其他项目已经安装成功的 node_modules 文件夹,直接复制。

文件夹内容比较大 >100mb

更多:

Vue3.4+element-plus2.5 + Vite 搭建教程整理

Vite 下一代的前端工具链,前端开发与构建工具

基于Vue的移动端UI框架整理

相关推荐
ErMao几秒前
TypeScript的泛型工具集合
前端·javascript
涔溪12 分钟前
如何解决微前端架构中主应用和微应用的通信问题?
前端·架构
重铸码农荣光34 分钟前
深入理解 JavaScript 原型链:从 Promise.all 到动态原型的实战探索
前端·javascript·promise
我叫黑大帅41 分钟前
什么叫可迭代对象?为什么要用它?
前端·后端·python
颜渊呐42 分钟前
Vue3 + Less 实现动态圆角 TabBar:从代码到优化实践
前端·css
PineappleCoder1 小时前
pnpm 凭啥吊打 npm/Yarn?前端包管理的 “硬链接魔法”,破解三大痛点
前端·javascript·前端工程化
fruge1 小时前
前端文档自动化:用 VitePress 搭建团队技术文档(含自动部署)
运维·前端·自动化
CoolerWu2 小时前
TRAE SOLO实战成功展示&总结:一个所见即所得的笔记软体
前端·javascript
Cassie燁2 小时前
el-button源码解读1——为什么组件最外层套的是Vue内置组件Component
前端·vue.js
vx_bscxy3222 小时前
告别毕设焦虑!Python 爬虫 + Java 系统 + 数据大屏,含详细开发文档 基于web的图书管理系统74010 (上万套实战教程,赠送源码)
java·前端·课程设计