Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/matiastucci/electron-auto-updater-example
Electron auto updater example
https://github.com/matiastucci/electron-auto-updater-example
autoupdater electron electron-builder nuts
Last synced: 3 months ago
JSON representation
Electron auto updater example
- Host: GitHub
- URL: https://github.com/matiastucci/electron-auto-updater-example
- Owner: matiastucci
- License: mit
- Created: 2017-07-31T04:02:46.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T18:28:24.000Z (about 2 years ago)
- Last Synced: 2023-09-02T08:13:43.077Z (over 1 year ago)
- Topics: autoupdater, electron, electron-builder, nuts
- Language: JavaScript
- Homepage:
- Size: 571 KB
- Stars: 40
- Watchers: 3
- Forks: 17
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Electron auto updater example
**Windows** and **OS X** minimal Electron applications with auto updates implemented (based on the [electron-quick-start](https://github.com/electron/electron-quick-start)).
## Try it
The latest version of this example is `1.0.2`. So, you can download the [`1.0.1`](https://github.com/matiastucci/electron-auto-updater-example/releases/tag/1.0.1) one and see how the app finds the new version and downloads it 🎉## Powered by
- **Building process:** [`electron-builder`](https://github.com/electron-userland/electron-builder) (if you're using OS X, you'll need to [sign the app](https://github.com/electron-userland/electron-builder/wiki/Code-Signing))
- **Auto updates server:** [`nuts`](https://github.com/GitbookIO/nuts)## Use it
```bash
# Clone this repository
git clone https://github.com/matiastucci/electron-auto-updater-example
# Go into the repository
cd electron-auto-updater-example
# Install dependencies
npm install
# Run the app
npm run dev
# Build the app
npm run build
```