electron-vue使用electron-updater实现自动更新
今天呢,给大家带来一篇干货满满的electron-vue自动升级的教程,话不多说,开始我的表演!
配置文件 "package.json"
"build" : { "publish": [ { "provider": "generic", "url": "http://127.0.0.1:3000/newfile/" } ], }, "devDependencies": { "electron": "^2.0.4", "electron-updater": "3.0.0", "electron-builder": "^20.19.2" }
安装依赖
需要注意的是electron-vue中目前是使用electron 2.0.4的,所以最新版的electron-updater是不支持的,若手动升级electron版本的话,如果你使用了node-ffi等的话,是无法运行的,但是如果你只是使用node-ffi的话可以切换成node-ffi-napi然后对electron进行升级 yarn add [email protected] --dev(推荐) npm i [email protected] -D cnpm i [email protected] -D
自动更新 "update.js"
import { autoUpdater } from 'electron-updater' import { ipcMain } from 'electron' /** * -1 检查更新失败 0 正在检查更新 1 检测到新版本,准备下载 2 未检测到新版本 3 下载中 4 下载暂停 5 下载暂停恢复 6 下载完成 7 下载失败 8 取消下载 * */ class Update { mainWindow constructor (mainWindow) { this.mainWindow = mainWindow autoUpdater.setFeedURL('http://127.0.0.1:3000/newfile') // 更新地址与package.json中的build.publish.url相对应 /** * 根据自身需求选择下方方法 */ this.error() this.start() this.allow() this.unallowed() this.listen() this.download() } Message (type, data) { this.mainWindow.webContents.send('message', type, data) } error () { // 当更新发生错误的时候触发。 autoUpdater.on('error', (err) => { this.Message(-1, err) console.log(err) }) } start () { // 当开始检查更新的时候触发 autoUpdater.on('checking-for-update', (event, arg) => { this.Message(0) }) } allow () { // 发现可更新数据时 autoUpdater.on('update-available', (event, arg) => { this.Message(1) }) } unallowed () { // 没有可更新数据时 autoUpdater.on('update-not-available', (event, arg) => { this.Message(2) }) } listen () { // 下载监听 autoUpdater.on('download-progress', () => { this.Message('下载进行中') }) } download () { // 下载完成 autoUpdater.on('update-downloaded', () => { this.Message(6) setTimeout(m => { autoUpdater.quitAndInstall() }, 1000) }) } load () { // 触发器 autoUpdater.checkForUpdates() } } export default Update
update配置
若对class写法不是很熟悉的同学,可以参考阮一峰老师的es6课程class
在下载中的时候有一个问题就是下载非差异文件的时候不会触发下载监听,点击查看
主进程 "index.js"
import Update from './update' mainWindow = new BrowserWindow({ height: 563, useContentSize: true, width: 1000 }) let update = new Update(mainWindow)
下面对比较常见的一些bug进行一下处理
At least electron-updater 4.0.0 is recommended by current electron-builder version. Please set electron-updater version to "^4.0.0"
electron-updater 安装在dependencies了,在package.json中将他移动到devDependencies
相关推荐
游走的豚鼠君 2020-11-10
sanallen 2020-07-04
electronvolt 2020-07-04
sanallen 2020-06-14
moyigg 2020-06-09
疯狂老司机 2020-06-07
zhujuyu 2020-06-06
moyigg 2020-06-01
zhujuyu 2020-05-30
viewerlin 2020-05-29
zhujuyu 2020-05-28
yanchuncheng 2020-05-12
Trustport 2020-05-06
chenyijun 2020-05-05
electronvolt 2020-05-04
游走的豚鼠君 2020-05-01
electronvolt 2020-04-21
游走的豚鼠君 2020-04-18