Socket
Socket
Sign inDemoInstall

update-notifier

Package Overview
Dependencies
68
Maintainers
6
Versions
48
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    update-notifier

Update notifier for your package


Version published
Maintainers
6
Created

Readme

Source

update-notifier Build Status

Update notifier for your Node.js NPM package

screenshot

Inform your package users of updates in a non-intrusive way. Mainly targets global CLI apps.

Whenever you initiate the update notifier and it's not within the interval threshold, it will asynchronously check with NPM in the background for available updates, then persist the result. The next time the notifier is initiated the result will be loaded into the .update property. This prevents any impact on your package startup performance. The check process is done with fork. This means that if you call process.exit, the check will still be performed in its own process.

Table of Contents

About

The idea for this module came from the desire to apply the browser update strategy to CLI tools, where everyone is always on the latest version. We first tried automatic updating, which we discovered wasn't popular. This is the second iteration of that idea, but limited to just update notifications.

There are a few projects using it:

  • Yeoman - modern workflows for modern webapps

  • Bower - a package manager for the web

  • Roots - a toolkit for advanced front-end development

  • Automaton - task automation tool

  • Spoon.js CLI

  • Node GH - GitHub command line tool

  • Hoodie CLI - Hoodie command line tool

  • pullr - GitHub pull requests from the command line

Examples

Example usage

var updateNotifier = require('update-notifier');

// Checks for available update and returns an instance
var notifier = updateNotifier();

if (notifier.update) {
	// Notify using the built-in convenience method
	notifier.notify();
}

// `notifier.update` contains some useful info about the update
console.log(notifier.update);
/*
{
	latest: '0.9.5',
	current: '0.9.3',
	type: 'patch', // possible values: latest, major, minor, patch
	date: '2012-11-05T14:32:37.603Z',
	name: 'yeoman'
}
*/

Example with settings and custom message

var notifier = updateNotifier({
	updateCheckInterval: 1000 * 60 * 60 * 24 * 7 // 1 week
});

if (notifier.update) {
	notifier.notify('Update available: ' + notifier.update.latest);
}

Documentation

updateNotifier([settings])

Checks if there is an available update. Accepts settings defined below. Returns an object with update info if there is an available update, otherwise undefined.

updateNotifier.notify([message || defer])

A convenience method that will inform the user about an available update (see screenshot). By default it will display the message right away. However, if you supply a custom message or true it will be displayed right before the process exits.

Settings

callback

Type: function
Default: null

If provided, a callback function will be called, passed (error[, update])

update is equal to notifier.update

packagePath

Type: string
Default: 'package.json'

Relative path to your module package.json.

packageName

Type: string
Default: Inferred from packageFile

Used instead of inferring it from packageFile.
Requires you to also specify packageVersion.

packageVersion

Type: string
Default: Inferred from packageFile

Used instead of inferring it from packageFile.
Requires you to also specify packageName.

updateCheckInterval

Type: number
Default: 1000 * 60 * 60 * 24 (1 day)

How often it should check for updates.

updateCheckTimeout

Type: number
Default: 20000 (20 secs)

How long the update can take.
If it takes longer than the timeout, it will be aborted.

registryUrl

Type: string
Default: 'http://registry.npmjs.org/%s'

Alternative registry mirrors:

  • http://85.10.209.91/%s
  • http://165.225.128.50:8000/%s

Proxy settings

If you are behind a proxy server the process.env property is used to take the proxy server value from HTTP_PROXY or HTTPS_PROXY in order to make the call to the server. This means that you need to set those properties as environment variables.

User settings

Users of your module have the ability to opt-out of the update notifier by changing the optOut property to true in ~/.config/configstore/update-notifier-[your-module-name].yml. The path is available in notifier.config.path.

You could also let the user opt-out on a per run basis:

if (process.argv.indexOf('--no-update-notifier') === -1) {
	// run updateNotifier()
}

License

BSD license and copyright Google

Keywords

FAQs

Last updated on 08 Jun 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc