用electron将vue项目打包成.exe文件【保姆级教程】

用electron将vue项目打包成.exe文件【保姆级教程】

说明: vue2项目,使用的vue-element-admin框架,用electron打包成.exe文件。

1、新建一个文件夹,然后右键打开终端或者cd到这个目录。执行下面的命令(最好确认一下github网站是否登陆了)。

javascript 复制代码
//将electron官网中的quick-start拉取到本地
git clone https://github.com/electron/electron-quick-start


安装成功的文件如下显示:

2.安装好后,用vscode(其他类似工具)打开,新建终端,前后输入下面的命令。

javascript 复制代码
//下载项目需要的依赖
npm install

//安装打包.exe所需要的依赖electron-packager、electron
npm i electron-packager --save-dev
npm i electron --save-dev 

//运行看看是否可以成功
npm run start

如果运行成功,会弹出一个页面,如下图:


3、删除electron-quick-start文件中的index.html,把自己的项目dist文件放进去。

4、打开electron-quick-start文件里的main.js文件,下面是mian.js完整代码。
重点是: mainWindow.loadFile("./dist/index.html") 的修改

javascript 复制代码
// Modules to control application life and create native browser window
const { app, BrowserWindow } = require("electron");
const path = require("node:path");

function createWindow() {
  // Create the browser window.
  const mainWindow = new BrowserWindow({
    width: 1024, //自己需要的宽高
    height: 960,
    webPreferences: {
      preload: path.join(__dirname, "preload.js"),
    },
  });

  // and load the index.html of the app.
  mainWindow.loadFile("./dist/index.html");
  // Open the DevTools.
  mainWindow.webContents.openDevTools(); // 打开调试工具
}

// This method will be called when Electron has finished
// initialization and is ready to create browser windows.
// Some APIs can only be used after this event occurs.
app.whenReady().then(() => {
  createWindow();

  app.on("activate", function () {
    // On macOS it's common to re-create a window in the app when the
    // dock icon is clicked and there are no other windows open.
    if (BrowserWindow.getAllWindows().length === 0) createWindow();
  });
});

// Quit when all windows are closed, except on macOS. There, it's common
// for applications and their menu bar to stay active until the user quits
// explicitly with Cmd + Q.
app.on("window-all-closed", function () {
  if (process.platform !== "darwin") app.quit();
});

// In this file you can include the rest of your app's specific main process
// code. You can also put them in separate files and require them here.

5、打开 package.json文件,添加上有关packager的代码。

(PS: 如果不需要自动匹配dist文件夹下的应用图标使用该内容

"electron-packager ./ Vite App --platform=win32 --arch=x64 --overwrite")

javascript 复制代码
  "scripts": {
    "start": "electron .",
    "packager": "electron-packager ./ 你想用的exe名字 --platform=win32 --arch=x64 --icon=./dist/favicon.ico --overwrite"
  },


6、终于到了最后一步:npm run packager进行打包!打包成功后如下图

javascript 复制代码
npm run packager
相关推荐
王解4 小时前
Jest项目实战(4):将工具库顺利迁移到GitHub的完整指南
单元测试·github
油泼辣子多加4 小时前
2024年11月4日Github流行趋势
github
计算机-秋大田5 小时前
基于Spring Boot的船舶监造系统的设计与实现,LW+源码+讲解
java·论文阅读·spring boot·后端·vue
梓羽玩Python5 小时前
推荐一款用了5年的全能下载神器:Motrix!全平台支持,不限速下载网盘文件就靠它!
程序员·开源·github
羊小猪~~7 小时前
数据结构C语言描述2(图文结合)--有头单链表,无头单链表(两种方法),链表反转、有序链表构建、排序等操作,考研可看
c语言·数据结构·c++·考研·算法·链表·visual studio
小牛itbull11 小时前
ReactPress:重塑内容管理的未来
react.js·github·reactpress
Yaml415 小时前
Spring Boot 与 Vue 共筑二手书籍交易卓越平台
java·spring boot·后端·mysql·spring·vue·二手书籍
清灵xmf19 小时前
在 Vue 中实现与优化轮询技术
前端·javascript·vue·轮询
鱼满满记19 小时前
1.6K+ Star!GenAIScript:一个可自动化的GenAI脚本环境
人工智能·ai·github
躺不平的理查德19 小时前
数据结构-链表【chapter1】【c语言版】
c语言·开发语言·数据结构·链表·visual studio