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

updates

v17.10.1

Published

CLI Dependency update tool for npm, uv, cargo, go and actions

Readme

updates

updates is a CLI tool which checks for dependency updates. It is typically able to complete in less than a second.

Supported files

  • package.json - npm dependencies
  • pyproject.toml - uv dependencies
  • go.mod - go dependencies
  • Cargo.toml - Cargo dependencies
  • .{github,gitea,forgejo}/workflows - Actions
  • Dockerfile*, docker-*.{yml,yaml} - Docker images

Usage

# check for updates
npx updates

# update package.json and install new dependencies
npx updates -u && npm i

Options

|Option|Description| |:-|:-| |-u, --update|Update versions and write dependency file| |-f, --file <path,...>|File or directory to use, defaults to current directory| |-i, --include <dep,...>|Include only given dependencies| |-e, --exclude <dep,...>|Exclude given dependencies| |-p, --prerelease [<dep,...>]|Consider prerelease versions| |-R, --release [<dep,...>]|Only use release versions, may downgrade| |-g, --greatest [<dep,...>]|Prefer greatest over latest version| |-t, --types <type,...>|Dependency types to update| |-P, --patch [<dep,...>]|Consider only up to semver-patch| |-m, --minor [<dep,...>]|Consider only up to semver-minor| |-d, --allow-downgrade [<dep,...>]|Allow version downgrades when using latest version| |-C, --cooldown <days>|Minimum dependency age in days| |-l, --pin <dep=range>|Pin dependency to given semver range| |-E, --error-on-outdated|Exit with code 2 when updates are available and 0 when not| |-U, --error-on-unchanged|Exit with code 0 when updates are available and 2 when not| |-r, --registry <url>|Override npm registry URL| |-S, --sockets <num>|Maximum number of parallel HTTP sockets opened. Default: 96| |-T, --timeout <ms>|Network request timeout in ms (go probes use half). Default: 5000| |-M, --modes <mode,...>|Which modes to enable. Either npm, pypi, go, cargo, actions, docker. Default: npm,pypi,go,cargo,actions,docker| |-I, --indirect|Include indirect Go dependencies| |-j, --json|Output a JSON object| |-n, --no-color|Disable color output| |-v, --version|Print the version| |-V, --verbose|Print verbose output to stderr| |-h, --help|Print the help|

Options that take multiple arguments can take them either via comma-separated value or by specifying the option multiple times. If an option has a optional dep argument but none is given, the option will be applied to all dependencies instead. All dep options support glob matching via * or regex (on CLI, wrap the regex in slashes, e.g. '/^foo/').

Config File

The module can be configured with updates.config.{ts,js,mjs,mts} in your repo root.

import type {Config} from "updates";

export default {
  exclude: [
    "semver",
    "@vitejs/*",
    /^react(-dom)?$/,
  ],
  pin: {
    "typescript": "^5.0.0",
  },
} satisfies Config;

Config Options

  • include Array<string | RegExp>: Array of dependencies to include
  • exclude Array<string | RegExp>: Array of dependencies to exclude
  • types Array<string>: Array of dependency types to use
  • registry string: URL to npm registry
  • minAge number: Minimum dependency age in hours
  • pin Record<string, string>: Pin dependencies to semver ranges

CLI arguments have precedence over options in the config file. include, exclude, and pin options are merged.

Environment Variables

|Variable|Description| |:-|:-| |UPDATES_FORGE_TOKENS|Comma-separated list of host:token pairs for authenticating against forge APIs (e.g. github.com:ghp_xxx,gitea.example.com:tok_xxx)| |UPDATES_GITHUB_API_TOKEN|GitHub API token for authenticating forge API requests| |GITHUB_API_TOKEN|Fallback GitHub API token| |GH_TOKEN|Fallback GitHub API token| |GITHUB_TOKEN|Fallback GitHub API token| |HOMEBREW_GITHUB_API_TOKEN|Fallback GitHub API token| |GOPROXY|Go module proxy URL. Default: https://proxy.golang.org,direct| |GONOPROXY|Comma-separated list of Go module patterns to fetch directly, bypassing the proxy| |GOPRIVATE|Fallback for GONOPROXY when not set|

Token resolution order for forge APIs: UPDATES_FORGE_TOKENS (matched by hostname) > UPDATES_GITHUB_API_TOKEN > GITHUB_API_TOKEN > GH_TOKEN > GITHUB_TOKEN > HOMEBREW_GITHUB_API_TOKEN.

© silverwind, distributed under BSD licence