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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@badisi/check-updates

v1.2.1

Published

An interactive CLI to scan, visualize and upgrade NPM dependencies — locally or globally.

Readme

Getting started

This tool scans your project's dependencies, checks for updates on the NPM registry and presents them in a sortable, color-coded table.

In interactive mode, select exactly which packages to upgrade and whether to use the Wanted or Latest version. The tool then updates your package.json files in place while preserving your existing semver ranges and optionally runs npm install to apply the changes.

npm install -g @badisi/check-updates

Features

Interactive table UI — browse, search and toggle package upgrades - grouped by update severityWanted vs Latest — upgrade to either: the highest version satisfying your semver range or the absolute latestColor-coded diffs — instantly see what changed: red for major, cyan for minor, green for patchDiagnosis — understand what's missing, unsynced, invalid, unsatisfied, unavailable or at the latest versionSmart range preservation — caret (^), tilde (~), exact, wildcard, hyphen and OR ranges are all preserved when writing upgradesMonorepo-aware — scan multiple package.json files in a single run using glob patternsGlobal support — check and upgrade global NPM packagesCaching — reduce registry requests and speed up subsequent runsPost-upgrade install — optionally run npm install automatically after applying changes

Note: Global package checking and the post-upgrade install step currently support only npm. Pull requests to add support for other package managers are very welcome.

CLI utility preview

Usage

check-updates [path...] [options]

# or using the shorthand alias:
bcu [path...] [options]

# or without installation, using `npx` directly:
npx @badisi/check-updates [path...] [options]

Options

| Option | Description | | :--- | :--- | | -i, --interactive | Run in interactive mode with a table UI to choose updates and optionally run npm install. | | -g, --global | Check globally installed packages instead of local package.json files. | | -c, --cache | Enable caching to reduce network requests. | | --all | Show up-to-date packages alongside outdated ones. | | -v, --version | Print the tool version. | | -h, --help | Show help information. |

Examples

  • Check global packages

Visualize and select upgrades for globally installed packages:

check-updates -g
  • Interactive Mode (Recommended)

Interactively choose which updates to apply to your package.json files:

check-updates -i
  • Check specific directories, files or glob patterns

By default, the tool looks for package.json in the current directory, but you can specify any number of targets:

# Check a folder
check-updates path/to/folder

# Check a specific file
check-updates path/to/package.json

# Check multiple files or glob patterns
check-updates ./package.json ./packages/core/package.json
check-updates "./**/package.json" "{,projects/**/}package.json"
  • Include up-to-date packages

By default, up-to-date dependencies are hidden. To show everything run:

check-updates --all
  • Enable cache

Speed up repeated runs by caching registry responses:

check-updates -c

Development

See the developer docs.

Contributing

> Want to Help ?

Want to file a bug, contribute some code or improve documentation ? Excellent!

But please read up first on the guidelines for contributing, and learn about submission process, coding rules and more.

> Code of Conduct

Please read and follow the Code of Conduct and help us keep this project open and inclusive.