【Electron】使用Electron将web项目打包成桌面应用程序


Electron是由GitHub开发,使用 JavaScript,HTML 和 CSS 构建跨平台的桌面应用程序,可以帮我们把web网页项目直接打包成桌面应用程序。

一、所需环境&打包前准备

1、安装node.js

electron 依赖于node.js 需要安装node.js:
安装node(步骤,不是重点,略过)

2、安装electron

dos下,全局安装:

npm install -g electron

检查是否安装成功:

electron -v

3、web项目

二、打包过程

1、打包配置

在需要打包的web网页项目根目录下分别新建:main.js、package.json

package.json:在package.json中加入如下内容

{
  "name"    : "App", // 项目名称
  "version" : "0.1.0",
  "main"    : "main.js"  // 根目录下的main.js
}

main.js:在main.js中加入如下代码

const {app, BrowserWindow} = require('electron')
const path = require('path')
const url = require('url')
 
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let win
 
function createWindow () {
  // Create the browser window.
  win = new BrowserWindow({width: 800, height: 600})
 
  // and load the index.html of the app.
  win.loadURL(url.format({
    pathname: path.join(__dirname, 'index.html'),
    protocol: 'file:',
    slashes: true
  }))
 
  // Open the DevTools.
  // win.webContents.openDevTools()
 
  // Emitted when the window is closed.
  win.on('closed', () => {
    // Dereference the window object, usually you would store windows
    // in an array if your app supports multi windows, this is the time
    // when you should delete the corresponding element.
    win = null
  })
}
 
// 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.on('ready', createWindow)
 
// Quit when all windows are closed.
app.on('window-all-closed', () => {
  // On macOS it is common for applications and their menu bar
  // to stay active until the user quits explicitly with Cmd + Q
  if (process.platform !== 'darwin') {
    app.quit()
  }
})
 
app.on('activate', () => {
  // 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 (win === null) {
    createWindow()
  }
})
 
// 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.

注意:在main.js 中的index.html 为你web项目的首页,及入口文件
请添加图片描述

2、 安装打包器

打开 DOS窗口,cd 到你的项目目录下,输入下面命令,全局安装electron打包器

npm install electron-packager -g

3、执行打包命令:

在根目录下执行打包命令:

electron-packager . app --win --out App --arch=x64 --electron-version 1.4.14 --overwrite --ignore=node_modules

请添加图片描述

打包成功后在根目录下会生成打包好的工程:
请添加图片描述

打开工程中的应用程序即可运行web项目:
请添加图片描述

请添加图片描述

  • 7
    点赞
  • 51
    收藏
    觉得还不错? 一键收藏
  • 4
    评论
Electron是一个可以使用Web技术开发桌面应用程序的开源框架,它使用了Chromium和Node.js等技术。如果你想把Vue项目打包Electron桌面应用程序的话,可以按照以下步骤进行操作: 1. 首先,你需要安装Node.js和npm。 2. 创建Vue项目,并使用npm安装electronelectron-builder: ```bash npm install electron --save-dev npm install electron-builder --save-dev ``` 3. 在Vue项目根目录下创建一个electron.js文件,用于启动Electron应用程序。在这个文件中,需要引入Electron模块和Vue项目的index.html文件: ```javascript const { app, BrowserWindow } = require('electron') const path = require('path') const url = require('url') let win function createWindow () { win = new BrowserWindow({ width: 800, height: 600, webPreferences: { nodeIntegration: true } }) win.loadURL(url.format({ pathname: path.join(__dirname, 'dist', 'index.html'), protocol: 'file:', slashes: true })) win.on('closed', () => { win = null }) } app.on('ready', createWindow) app.on('window-all-closed', () => { if (process.platform !== 'darwin') { app.quit() } }) app.on('activate', () => { if (win === null) { createWindow() } }) ``` 4. 修改Vue项目的package.json文件,添加以下脚本: ```json "scripts": { "electron": "electron ." } ``` 5. 执行以下命令进行打包: ```bash npm run build ``` 6. 在Vue项目根目录下创建一个electron-builder.json文件,配置应用程序打包信息: ```json { "appId": "com.example.app", "directories": { "output": "dist_electron" }, "mac": { "category": "your.app.category.type" }, "win": { "target": "nsis" } } ``` 7. 执行以下命令进行打包: ```bash npm run electron:build ``` 8. 打包后,在dist_electron文件夹中可以找到生Electron应用程序。 以上就是使用Electron对Vue项目进行打包的步骤,希望可以帮助到你。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值