Git Product home page Git Product logo

electron-dev-update-server's Introduction

electron-dev-update-server

This is an example of the development-mode Electron release server I'm trying to use, which is currently NOT working. It's heavily cribbed from the article Auto-updating apps for Windows and OSX using Electron: The complete guide It contains:

  • server.js, an Express server
  • releases, an example directory structure which usually contains my builds
  • ssl, a directory which usually contains an SSL certificate and key

As of right now, the auto-updating code in my Electron main process script looks something like this:

import { autoUpdater } from 'electron';
const APP_VERSION = "1.0.0";

app.on('ready', () => {
  autoUpdater.setFeedURL(`https://localhost:3002/updates/latest?v=${APP_VERSION}`);
  autoUpdater.on('error', (event) => {
    console.error("An error happened, boo");
    console.error(event);
  });
  autoUpdater.on('updates-available', () => {
    console.log("Updates are available- hooray!");
  });
  autoUpdater.checkForUpdates();
});

/* ...more code which starts the app */

When I compile and package this, I get an error of the following form: ...actually, I don't get an error.

Weird. Never mind, then.

electron-dev-update-server's People

Contributors

mhink avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.