electron/docs/tutorial/updates.md
2017-08-14 13:26:33 -07:00

2.5 KiB
Raw Blame History

Updating Applications

There are several ways to update an Electron application. The easiest and officially supported one is taking advantage of the built-in Squirrel framework and Electron's autoUpdater module.

Deploying an update server

To get started, you first need to deploy a server that the autoUpdater module will download new updates from.

Depending on your needs, you can choose from one of these:

Implementing updates in your app

Once you've deployed your update server, continue with importing the required modules in your code. The following code might vary for different server software, but it works like described when using Hazel.

Important: Please ensure that the code below will only be executed in your packaged app. You can use electron-is-dev to check for the environment.

const { app, autoUpdater } = require('electron')

Next, construct the URL of the update server and tell autoUpdater about it:

const server = 'https://your-deployment-url.com'
const feed = `${server}/update/${process.platform}/${app.getVersion()}`

autoUpdater.setFeedURL(feed)

As the final step, check for updates (the example below will check every minute):

setInterval(() => {
  autoUpdater.checkForUpdates()
}, 60000)

That's all. Once built, your application will receive an update for each new GitHub Release that you create.

Further steps

Now that you've configured the basic update mechanism for your application, you need to ensure that the user will get notified when there's an update (this can be achieved using events).

Also make sure that potential errors are being handled.