tiny-updater
A small update notifier for NPM packages, useful for CLI apps.
Last updated 3 years ago by fabiospampinato .
Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install tiny-updater 
SYNC missed versions from official npm registry.

Tiny Updater

A small update notifier for NPM packages, useful for CLI apps.

Pros & Cons

This is basically a bare-bones alternative to update-notifier, with all the pros and cons of that.

  • Small: This library has only a handful of small dependencies I maintain. This library weighs about ~5kb total.
  • Bundler-ready: This library can be bundled, which is important for achieving the best startup times. update-notifier on the other hand uses highly dyanmic imports and spawns a child process, if you are using it you can't bundle your CLI app.
  • Fast: Startup performance is paramount for CLI apps, in order to improve that you need to bundle your app and make the bundle as small as possible, using this library won't compromise your startup times much.
  • Bare-bones: Being lightweight comes at a cost, that cost is mainly less visually-sophisticated update messages written to the console compared to update-notifier, but still I think the output is pretty good.
  • Work in progress: While this library should suit most use cases it's currently less flexible than update-notifier, if you need something fancy this may not work for you.

Install

npm install tiny-updater

Usage

The following options are supported:

type Options = {
  // The name of the package to check for updates on the registry
  name: string,
  // The current version of the package, used to check if an update is available compared to this version
  version: string,
  // A function to print the update message in your own way
  print?: ({ name, current, latest }) => void,
  // Some options for customizing how the registry is being queried
  registry?: {
    // Map of custom additional headers to set when querying the registry
    headers?: {},
    // The URL for the registry to query, it defaults to NPM
    url?: string
  },
  // Time to wait before checking for updates again
  ttl?: number
};

This is how you'd use it:

import updater from 'tiny-updater';
import {name, version} from './package.json';

// Let's check for updates

await updater ({
  name,
  version,
  ttl: 86_400_000
});

// If there are no updates available:
// 1. `false` is returned
// 2. Nothing is logged to the console

// If there is an update available:
// 1. `true` is returned
// 2. At most once a day, right before the process exits, a message like the following is logged to the console:
// ???? Update available for example-package: 0.1.0 → 1.0.0

License

MIT © Fabio Spampinato

Current Tags

  • 3.5.3                                ...           latest (a year ago)

13 Versions

  • 3.5.3                                ...           a year ago
  • 3.5.2                                ...           2 years ago
  • 3.5.1                                ...           3 years ago
  • 3.5.0                                ...           3 years ago
  • 3.4.0                                ...           3 years ago
  • 3.3.0                                ...           3 years ago
  • 3.2.3                                ...           3 years ago
  • 3.2.2                                ...           3 years ago
  • 3.2.0                                ...           3 years ago
  • 3.0.0                                ...           3 years ago
  • 2.0.0                                ...           4 years ago
  • 1.0.1                                ...           4 years ago
  • 1.0.0                                ...           5 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (3)
Dev Dependencies (3)
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |