docs: add note about electron-updater

This commit is contained in:
Vladimir Krivosheev 2017-08-22 16:51:57 +02:00 committed by GitHub
parent 1f604c0826
commit d3f30e7a9c

View file

@ -22,6 +22,8 @@ but caches app updates on disk and supports private repositories.
- [electron-release-server](https://github.com/ArekSredzki/electron-release-server)
Provides a dashboard for handling releases
When using [electron-builder][electron-builder-lib], you can also use userland [electron-updater][electron-updater] module. It allows you to avoid update server maintaining (Amazon S3, GitHub or any other static server are supported).
## Implementing updates in your app
Once you've deployed your update server, continue with importing the required
@ -94,3 +96,6 @@ autoUpdater.on('error', message => {
console.error(message)
})
```
[electron-builder-lib]: https://github.com/electron-userland/electron-builder
[electron-updater]: https://github.com/electron-userland/electron-builder/wiki/Auto-Update