# tiny-updater

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

Latest version **3.7.0** (published 2026-02-08) · MIT license · 0 weekly downloads

## Install

```sh
npm install tiny-updater
pnpm add tiny-updater
yarn add tiny-updater
bun add tiny-updater
```

## Health

**Score 65/100 (B)** — status: stable.

Positive: has types; esm support; no vulnerabilities; high maintenance score; high quality score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 3.7.0 |
| Published | 2026-02-08 |
| First published | 2021-05-12 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 4 |
| Unpacked size | 10.1 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 17 |
| Maintainers | fabiospampinato |
| Keywords | tiny, npm, update, notify, notifier, update, updater |

## Links

- npm: https://www.npmjs.com/package/tiny-updater
- Repository: https://github.com/fabiospampinato/tiny-updater
- Homepage: https://github.com/fabiospampinato/tiny-updater#readme
- Issues: https://github.com/fabiospampinato/tiny-updater/issues
- npm.io page: https://npm.io/package/tiny-updater

## Dependencies (4)

- [ionstore](https://npm.io/package/ionstore.md) ^1.0.1
- [when-exit](https://npm.io/package/when-exit.md) ^2.1.5
- [tiny-colors](https://npm.io/package/tiny-colors.md) ^2.2.2
- [function-once](https://npm.io/package/function-once.md) ^3.0.1

## Alternatives

- [postcss-color-hex-alpha](https://npm.io/package/postcss-color-hex-alpha.md) — 6.4M weekly downloads
- [randomcolor](https://npm.io/package/randomcolor.md) — 348.0K weekly downloads
- [bows](https://npm.io/package/bows.md) — 1.3K weekly downloads
- [ep_prefer_color_scheme](https://npm.io/package/ep_prefer_color_scheme.md) — 260 weekly downloads
- [coc-yank](https://npm.io/package/coc-yank.md) — 61 weekly downloads

## Recent versions

- 3.7.0 (latest) — 2026-02-08
- 3.6.0 — 2026-02-08
- 3.5.3 — 2025-01-12
- 3.5.2 — 2024-04-04
- 3.5.1 — 2023-08-03
- 3.5.0 — 2023-08-03
- 3.4.0 — 2023-02-15
- 3.3.0 — 2023-02-15
- 3.2.3 — 2023-02-11
- 3.2.2 — 2023-02-07
- 3.2.0 — 2023-02-07
- 3.0.0 — 2023-02-07
- 2.0.0 — 2022-06-03
- 1.0.1 — 2021-11-12
- 1.0.0 — 2021-05-12

## README

# 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](https://github.com/yeoman/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

```sh
npm install tiny-updater
```

## Usage

The following options are supported:

```ts
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:

```ts
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

---
_Source: https://npm.io/package/tiny-updater · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
