This is a fork from lemarier/tauri-update-server and vercel/hazel.
This project lets you deploy an update server for Electron apps with ease: You only need to click a button.
The result will be faster and more lightweight than any other solution out there! 🚀
- Recommended by Electron here
- 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 (custom interval possible)
- When asked for an update, it returns the link to the GitHub asset directly (saves bandwidth)
- Supports macOS and Windows apps
- Scales infinitely on Vercel Serverless Functions
Open this link in a new tab to deploy Hazel on Vercel:
Once deployed, Tauri app will automatically work given that the configuration file is set properly. See Updater Docs.
"updater": {
"active": true,
"endpoints": [
"https://releases.myapp.com/update{{target}}/{{current_version}}"
],
"dialog": true,
"pubkey": "YOUR_UPDATER_SIGNATURE_PUBKEY_HERE"
}
That's it! ✅
The following environment variables can be used optionally:
INTERVAL
: Refreshes the cache every x minutes (restrictions) (defaults to 15 minutes)PRE
: When defined with a value of1
, only pre-releases will be cachedTOKEN
: Your GitHub token (for private repos)URL
: The server's URL (for private repos - when running on Vercel, this field is filled with the URL of the deployment automatically)
Since Hazel routes all the traffic for downloading the actual application files to GitHub Releases, you can use their API to determine the download count for a certain release.
As an example, check out the latest Hyper release and search for mac.zip
. You'll find a release containing a sub property named download_count
with the amount of downloads as its value.
Displays an overview page showing the cached repository with the different available platforms and file sizes. Links to the repo, releases, specific cached version and direct downloads for each platform are present.
Automatically detects the platform/OS of the visitor by parsing the user agent and then downloads the appropriate 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.
Accepts a platform (like "darwin" or "win32") to download the appropriate copy your app for.
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 available 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).
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) - Vercel