This project lets you deploy an update server for Electron apps with ease: You only need to run a single command and fill out two text fields.
The result will be faster and more lightweight than any other solution out there! 🚀
- Built on top of micro, the tiniest HTTP framework for Node.js
- Pulls the latest release data from GitHub Releases and caches it in memory
- Refreshes the cache every 15 minutes (use
INTERVAL
environment value for custom number of minutes - more) - When asked for an update, it returns the link to the GitHub asset directly (saves bandwidth)
- Supports macOS and Windows apps
- Scales very nicely across multiple Now instances
With Now CLI, you can deploy an update server like this:
now -e NODE_ENV="production" zeit/hazel
You'll be asked for the value of two environment variables:
ACCOUNT
: Your username or organisation name on GitHubREPOSITORY
: The name of the repository to pull releases from
Once it's deployed, paste the deployment address into your auto updater code:
const { app, autoUpdater } = require('electron')
const { resolve } = require('url')
const server = <your-deployment-url>
const feed = resolve(server, 'update', process.platform, app.getVersion())
autoUpdater.setFeedURL(feed)
That's it! ✅
From now on, the auto updater will ask your Hazel deployment for updates!
Automatically detects the platform/OS of the visitor by parsing the user agent and then downloads the appropiate copy of your application.
If the latest version of the application wasn't yet pulled from GitHub Releases, it will return a message and the status code 404
. The same happens if the latest release doesn't contain a file for the detected platform.
Does the same as /
(basically an alias).
Accepts a platform (like "darwin" or "win32") to download the appropiate copy your app for. I generally suggest using either process.platform
(more) or os.platform()
(more) to retrieve this string.
If the cache isn't filled yet or doesn't contain a download link for the specified platform, it will respond like /
.
Checks if there is an update avaiable by reading from the cache.
If the latest version of the application wasn't yet pulled from GitHub Releases, it will return the 204
status code. The same happens if the latest release doesn't contain a file for the specified platform.
This endpoint was specifically crafted for the Windows platform (called "win32" in Node.js).
Since the Windows version of Squirrel (the software that powers auto updates inside Electron) requires access to a file named "RELEASES" when checking for updates, this endpoint will respond with a cached version of the file that contains a download link to a .nupkg
file (the application update).
- Fork this repository to your own GitHub account and then clone it to your local device
- Move into the directory of your clone:
cd hazel
- Run the development server:
npm run dev
Huge thanks to my (@leo's) friend Andy, who suggested the name "Hazel" (since the auto updater software inside Electron is called "Squirrel") and Matheus for collecting ideas with me.
Leo Lamprecht (@notquiteleo) - ▲ZEIT