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

npx-vet

v0.0.3

Published

Inspect npm package trust evidence before delegating to npm exec.

Readme

npx-vet

npx-vet inspects npm package trust evidence before it delegates to npm exec.

Usage

Inspect a package for humans:

npx-vet inspect eslint

Inspect a package for agents:

npx-vet inspect eslint --json
npx-vet inspect eslint --json --fail-on=high

Preflight a command without executing it:

npx-vet --dry-run eslint -- --version

Run after inspection and approval:

npx-vet eslint -- --version

High-risk packages are blocked unless explicitly overridden:

npx-vet --allow-risk=high some-package -- --help

What It Reports

  • selected, latest, and previous versions
  • publish time and previous publish time
  • last-week npm downloads
  • maintainers and publisher
  • homepage, repository, license, deprecation
  • package size, file count, bins, lifecycle scripts
  • npm registry signature metadata when visible
  • file-level npm diff summary
  • typosquat similarity against the top 5,000 npm package names
  • machine-readable risk flags

Typosquat Detection

Requested package names are compared against a bundled list of the top 5,000 npm packages (generated from npm-high-impact via npm run update:popular-packages). A name that is one edit away from a popular package (esilnt vs eslint), or a popular scoped package with its scope flattened (types-node vs @types/node), raises a high POSSIBLE_TYPOSQUAT flag and blocks execution unless overridden. Two edits on longer names raises a medium flag. Popular packages themselves are never flagged.

These signals are evidence, not proof that a package is safe.