使用electron创建应用

前提

首先安装好node环境,装好npm,安装过程再次不在赘述

编写第一个Electron应用

在你的任意目录下创建文件夹demo,运行npm init初始化并输入你的配置

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
npm init
name: (electron) demo
version: (1.0.0) 0.1.0
description: a electron demo
entry point: (index.js) main.js
test command:
git repository:
keywords:
author: yanghq
license: (ISC)
About to write to F:\taocode\electron\package.json:
{
"name": "demo",
"version": "0.1.0",
"description": "a electron demo",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "yanghq",
"license": "ISC"
}

创建main.js和index.html文件,现在你的目录是这样的:

1
2
3
4
demo/
├── package.json
├── main.js
└── index.html

npm 全局安装electron
注:若npm卡住不动,可换cnpm源

1
npm install electron -g

编辑package.json
在scripts中加入运行语句,现在package.json是这样的

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "demo",
"version": "0.1.0",
"description": "a electron demo",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "yanghq",
"license": "ISC",
"devDependencies": {
"electron": "^1.4.1",
"electron-packager": "^8.5.2"
}
}

编辑main.js

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
const {app, BrowserWindow} = require('electron')
const path = require('path')
const url = require('url')
// 保持一个对于 window 对象的全局引用,如果你不这样做,
// 当 JavaScript 对象被垃圾回收, window 会被自动地关闭
let win
function createWindow () {
// 创建浏览器窗口。
win = new BrowserWindow({width: 800, height: 600})
// 加载应用的 index.html。
win.loadURL(url.format({
pathname: path.join(__dirname, 'index.html'),
protocol: 'file:',
slashes: true
}))
// 打开开发者工具。
win.webContents.openDevTools()
// 当 window 被关闭,这个事件会被触发。
win.on('closed', () => {
// 取消引用 window 对象,如果你的应用支持多窗口的话,
// 通常会把多个 window 对象存放在一个数组里面,
// 与此同时,你应该删除相应的元素。
win = null
})
}
// Electron 会在初始化后并准备
// 创建浏览器窗口时,调用这个函数。
// 部分 API 在 ready 事件触发后才能使用。
app.on('ready', createWindow)
// 当全部窗口关闭时退出。
app.on('window-all-closed', () => {
// 在 macOS 上,除非用户用 Cmd + Q 确定地退出,
// 否则绝大部分应用及其菜单栏会保持激活。
if (process.platform !== 'darwin') {
app.quit()
}
})
app.on('activate', () => {
// 在这文件,你可以续写应用剩下主进程代码。
// 也可以拆分成几个文件,然后用 require 导入。
if (win === null) {
createWindow()
}
})
// 在这文件,你可以续写应用剩下主进程代码。
// 也可以拆分成几个文件,然后用 require 导入。

编辑index.html

1
2
3
4
5
6
7
8
9
10
11
12
13
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
</body>
</html>

现在你可以在demo目录下运行该项目了

1
npm run start

可以看到运行窗口

打包

npm 安装electron-packager到本地

1
npm install electron-packager --save-dev

在package.json加入打包语句,先为:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"name": "demo",
"version": "0.1.0",
"description": "a electron demo",
"main": "app/main.js",
"scripts": {
"start": "electron .",
"package": "electron-packager ./ demo --all --out ./OutApp --electronversion 1.6.2",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "yanghq",
"license": "ISC",
"devDependencies": {
"electron": "^1.4.1",
"electron-packager": "^8.5.2"
}
}

package后的–electronversion 1.6.2需要改成你自己的electron版本号
现在你可以运行打包命令生成了

1
npm run package