1. 安装node.js
官方下载网页:https://nodejs.org/en/download/
安装完成后,在windows中打开powershell,输入node -v 就能看到版本号了。
2. 新建一个npm工程
$ mkdir firstapp
$ cd firstapp
$ npm init
所有都按默认的就可以。
3. 安装electron
官方推荐使用npm安装,首先进入刚才的npm工程目录,然后在命令行输入:
$ npm i -D electron@latest
常见问题:
- 下载速度慢:
在中国下载electron非常慢,因为electron下载的资源文件放在国外服务器上。可以修改npm的配置文件来更改npm下载使用的源。
npm的配置文件通常在windows的当前用户目录下,在目录下新建一个名为.npmrc的文件,内容如下:
registry=https://registry.npm.taobao.org/
disturl=https://npm.taobao.org/mirrors/node
ELECTRON_MIRROR=https://npm.taobao.org/mirrors/electron/
- 找不到package.json
这是因为没有在npm工程目录下进行项目的初始化,查看步骤2。
4. 最简单的electron
在npm工程目录下新建几个文件,首先,修改package.json
{
"name": "your-app",
"version": "0.1.0",
"main": "main.js",
"scripts": {
"start": "electron ."
}
}
然后是主程序 main.js
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', () => {
// 在macOS上,当单击dock图标并且没有其他窗口打开时,
// 通常在应用程序中重新创建一个窗口。
if (win === null) {
createWindow()
}
})
// 在这个文件中,你可以续写应用剩下主进程代码。
// 也可以拆分成几个文件,然后用 require 导入。
最后是载入的主页 index.html
<!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>
修改完成后,运行
$ npm start
你就能看到第一个electron应用运行起来了