Nothing Special   »   [go: up one dir, main page]

1.0.8 • Published 6 years ago

@philipplgh/electron-app-updater v1.0.8

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

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)