@philipplgh/electron-app-updater

``` const appUpdater = new AppUpdater({ repo: 'https://github.com/owner/repo', hasMetadata: true, auto: false, interval: 10, logger: logger }) ```

Usage no npm install needed!

<script type="module">
  import philipplghElectronAppUpdater from 'https://cdn.skypack.dev/@philipplgh/electron-app-updater';
</script>

README

A fast and easy update solution for Electron apps

Basic Usage

Configure the Updater

const appUpdater = new AppUpdater({
  repo: 'https://github.com/owner/repo',
  hasMetadata: true,
  auto: false,
  interval: 10,
  logger: logger
})

Update the Application

const update = await appUpdater.checkForUpdates()
const result = await appUpdater.downloadUpdate(update)