Electron,可以将web网页程序包装成桌面应用

Posted LongtengGensSupreme

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Electron,可以将web网页程序包装成桌面应用相关的知识,希望对你有一定的参考价值。

Electron是一个使用 javascripthtml 和 CSS 构建桌面应用程序的框架,内嵌Chromium,Nodejs,可以用JavaScript写同一份代码,发布到不同平台的本地应用,支持Windows、macOS,Linux。

通过它可以把我们日常用的一些网页进行包装,做成桌面上点开的应用,想用的时候直接点开就行了,不用打开谷歌、微软等浏览器,输入网页进到网站那么麻烦。下面看一下实际代码示例和演示效果。

1、安装node,npm

 

2、新建一个文件夹,命名为项目名字,比如my-electron-app,切换到该目录下运行命令:

mkdir my-electron-app && cd my-electron-app
npm init

 

在该目录下会生成一些代码文件,其中package.json中有一些对项目的描述和作者描述,最重要的是main:main.js,表名程序的主入口是main.js文件代码。

 

3、将electron包安装到开发依赖中,

npm install --save-dev electron

 

4、在项目目录下的package.json配置文件中的scripts字段下增加一条start命令:

 

5,在项目目录下新建main.js文件,添加代码

const path = require(\'path\')
const { app, BrowserWindow } = require(\'electron\');
function createWindow () {
  const win = new BrowserWindow({
    width: 800,
    height: 600
  })

  win.loadURL(\'https://music.163.com/\')
}

app.whenReady().then(() => {
  createWindow()
})

app.on(\'window-all-closed\', function () {
  if (process.platform !== \'darwin\') app.quit()
})

 

这里示例,我们将网易云音乐网页包装成桌面应用,图标点开直达网易云音乐。

6、执行命令,运行看效果

7、这里介绍了Electron的简单用法示例,还有更多更深层次的应用大家可以发挥想象。

 

原文链接:https://www.toutiao.com/i7020702579806028326/?tt_from=weixin&utm_campaign=client_share&wxshare_count=1&timestamp=1634860082&app=news_article&utm_source=weixin&utm_medium=toutiao_ios&use_new_style=1&req_id=2021102207480101013107506712A7170F&share_token=6DA5AABD-CEBF-4179-ABB4-8FC8FB0CDAAB&group_id=7020702579806028326

龙腾一族至尊龙骑

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项目:

以上是关于Electron,可以将web网页程序包装成桌面应用的主要内容,如果未能解决你的问题,请参考以下文章

Electron把网页打包成桌面应用并进行源码加密

将现有vue项目基于electron打包成桌面应用程序

700k把web端程序包装为桌面程序

怎么将网页打包成桌面应用(web前端页面

Electron+vue的使用

使用electron将vue项目打包成exe桌面应用