X Tutup
Skip to content

Commit d3f30e7

Browse files
authored
docs: add note about electron-updater
1 parent 1f604c0 commit d3f30e7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

docs/tutorial/updates.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ but caches app updates on disk and supports private repositories.
2222
- [electron-release-server](https://github.com/ArekSredzki/electron-release-server)
2323
Provides a dashboard for handling releases
2424

25+
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).
26+
2527
## Implementing updates in your app
2628

2729
Once you've deployed your update server, continue with importing the required
@@ -94,3 +96,6 @@ autoUpdater.on('error', message => {
9496
console.error(message)
9597
})
9698
```
99+
100+
[electron-builder-lib]: https://github.com/electron-userland/electron-builder
101+
[electron-updater]: https://github.com/electron-userland/electron-builder/wiki/Auto-Update

0 commit comments

Comments
 (0)
X Tutup