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

pkg-pulse

v1.0.0

Published

Check the maintenance health of your npm dependencies - maintainers, activity, and abandonment risk

Downloads

4

Readme

pkg-pulse

Check the health of your npm dependencies - maintainers, activity, and abandonment risk.

pkg-pulse vs npm audit

| | npm audit | pkg-pulse | |---|-------------|--------------| | Focus | Security vulnerabilities (CVEs) | Maintenance health | | Question | "Has this package been exploited?" | "Is this package still maintained?" | | Data source | npm advisory database | npm + GitHub API | | Catches | Known security issues | Abandoned packages, bus factor | | Misses | Unmaintained packages | Security vulnerabilities |

Use both. They're complementary.

npm audit     # Security
pkg-pulse     # Maintenance

Example

| Package | npm audit | pkg-pulse | |---------|-------------|--------------| | lodash 4.17.20 | ⚠️ CVE-2021-23337 | ✅ Healthy (active, 3 maintainers) | | abandoned-lib 1.0.0 | ✅ No issues | 🔴 High risk (1 maintainer, no commits in 2y) |

A package can pass npm audit but be abandoned. If a vulnerability is found tomorrow, who will fix it?

Installation

npx pkg-pulse           # Run directly
npm install -g pkg-pulse # Or install globally

Usage

pkg-pulse                    # Analyze current directory
pkg-pulse -p ./my-project    # Analyze specific project
pkg-pulse --verbose          # Show all signals
pkg-pulse --json             # Output JSON (for CI)
pkg-pulse --no-dev           # Exclude devDependencies

Example Output

📦 Package Health Report
   Project: my-app
   Analyzed: 47 packages

   ████████████████████████████████████░░░░

🔴 old-lib 25/100
   1 maintainer · 234 ★ · last commit 2y · 89 issues
   ✗ No npm release in 2y (>2y)
   ✗ No commits in 2y (>18mo)
   ⚠ Single maintainer (bus factor risk)

⚠️  some-pkg 55/100
   2 maintainers · 1.2K ★ · last commit 8mo · 45 issues
   ⚠ No commits in 8mo (>6mo)

✅ express 100/100
   12 maintainers · 65.2K ★ · last commit 1w · 156 issues

✅ lodash 95/100
   3 maintainers · 59.8K ★ · last commit 3mo · 89 issues
   ℹ 3 maintainers (small team)

────────────────────────────────────────────────────────────
Summary:
   ✅ 44 healthy
   ⚠️  2 warnings
   🔴 1 high risk

GitHub Token (Recommended)

Without a token: 60 requests/hour. With a token: 5000 requests/hour.

# Create at: github.com/settings/tokens (no permissions needed)
export GITHUB_TOKEN=ghp_xxxxxxxxxxxx
pkg-pulse

Scoring

| Signal | Impact | |--------|--------| | Deprecated / Archived | -100 (instant high risk) | | No maintainers | -40 | | 1 maintainer | -15 | | 2-3 maintainers | -5 | | No release >2y | -30 | | No release >1y | -20 | | No commits >18mo | -25 | | No commits >1y | -15 | | >500 open issues | -15 | | <50 stars | -5 | | >10K stars | +10 |

Risk levels: 🟢 >= 70 | 🟡 40-69 | 🔴 < 40

CI Integration

- name: Check dependencies
  run: npx pkg-pulse --json > report.json

Exit codes: 0 = healthy | 1 = high risk found | 2 = error

Limitations

  • npm only (no Maven, pip, etc.)
  • GitHub only (GitLab/Bitbucket = limited data)
  • Use a GitHub token for large projects

License

MIT