用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
相关推荐
lpfasd12337 分钟前
2026年第36周GitHub趋势周报:Agent技能化、MCP工具化与AI工程化加速
人工智能·github
OpenTiny社区12 小时前
【直播分享】GenUI SDK 技术公开课第二讲 | GenuiChat 核心配置深度解析
前端·github
dong_junshuai12 小时前
每天一个开源项目#93 HyperFrames:4.69万星的 HTML 视频渲染框架
开源·html·github
峰向AI13 小时前
别再忍受杂乱的桌面了,这款窗口管理器让 Windows 也有平铺式操作
github
cnnews15 小时前
Ubuntu 编译 postmarketOS
linux·运维·arm开发·ubuntu·github·音视频
逛逛GitHub17 小时前
把最新开源的 2B 端侧模型接入 DeepSeek Harness,有点子神奇。
github
Boop_wu18 小时前
[redis] redis 快速入门
数据库·redis·github
YWL18 小时前
OpenLayers导出功能:地图截图+GeoJSON导出完整方案,从Canvas合并到PDF生成
前端·vue·openlayers
上单带刀不带妹19 小时前
小程序图片缓存问题:时间戳和版本号解决图片不更新
缓存·小程序·vue·uniapp
m4Rk_19 小时前
【论文阅读】Agent 记忆机制(63):SAMem——把经验记忆细化为带长期价值的状态—Thought
论文阅读·人工智能·学习·开源·github