npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

github-app-updater

v1.0.5

Published

A node module that helps you autoupdating your apps if you use GitHub releases.

Downloads

11

Readme

GitHub App Updater

A node module that helps you autoupdating your apps if you use GitHub releases.

Usage

Release your app to GitHub releases using a semver tag name for your version.
This module will go check on GitHub if a new version is available, download it to a temp directory, and start the downloaded executable.

npm i github-app-updater

const gau = require('github-app-updater');

gau.checkForUpdate({
	currentVersion: require('./package.json').version,
	repo: 'https://api.github.com/repos/S2-/gitlit/releases/latest',
	assetMatch: /.+setup.+exe/i
});

gau.onUpdateAvailable = (version, asset) => {
	console.log(`new version ${version} available!`);
	gau.downloadNewVersion(asset);
};

gau.onNewVersionReadyToInstall = (file) => {
	console.log(`ready to install ${file}`);
	gau.executeUpdate(file);
};

Methods

checkForUpdate(options)

Starts an update check. This connects to GitHub and looks for new releases.

  • options <object>
    • currentVersion <string> the current version of the running app.
    • repo <string> the GitHub api url for the latest version. For example https://api.github.com/repos/S2-/gitlit/releases/latest
    • assetMatch <RegExp> a regular expression that matches the installer asset. For example to match gitlit-Setup-2.0.5.exe it could be /.+setup.+exe/i

downloadNewVersion(asset)

Downloads the new release from GitHub to a temp folder.

  • asset <object> the asset object received as parameter on the onUpdateAvailable event.

executeUpdate(file)

Executes the downloaded installer for the new version.

  • file <string> the file path received as parameter on the onNewVersionReadyToInstall event.

Events

onUpdateAvailable(version, asset)

Callback that is invoked when a new version of the app is available on GitHub.
This event can be used to tell the user that there is a new version available, and ask him if he wants to download it.

  • version <string> the new remote version that was found.
  • asset <object> the GitHub asset object for the release.

onNewVersionReadyToInstall(file)

Callback that is invoked when the new version is downloaded and ready to be installed.
This event can be used to tell the user that the new version is ready to be installed, and ask him if he wants to go ahead with the installation.

  • file <string> path of the installer that was downloaded.