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

opencheck-cli

v0.1.5

Published

Dependency security & health checker for modern multi-language projects

Readme

🔍 OpenCheck

I love open-source ❤️

Dependency security & health checker for Node.js projects — fast, free

npm version license

Features

  • 🔴 Security scanning via OSV.dev (Google's open vulnerability DB)
  • 🟡 Outdated package detection via NPM Registry
  • 📦 Deprecated package warnings
  • 📊 Weekly download stats (is this package still maintained?)
  • 🚀 CI/CD ready — exits with code 1 if critical issues found
  • 💻 Beautiful terminal output
  • 📄 HTML report export — beautiful dark-mode report
  • 🔧 Fix suggestions — instant npm update commands
  • ⚙️ GitHub Actions — auto-generate workflow file

Supported Ecosystems

  • Node.js (package.json)
  • Python (requirements.txt)
  • Rust (Cargo.toml)
  • Ruby (Gemfile)
  • PHP/Composer (composer.json)
  • Go (go.mod)
  • Java (pom.xml, build.gradle, build.gradle.kts)
  • .NET (.csproj, packages.lock.json)
  • Dart (pubspec.yaml)

Install

npm install -g opencheck-cli

Or use without installing:

npx opencheck-cli check .

Usage

# Check current directory
opencheck check .

# Check specific project
opencheck check ./my-project

# Show only issues (skip healthy packages)
opencheck check . --only-issues

# Export a beautiful HTML report
opencheck check . --html

# Show fix commands for outdated/vulnerable packages
opencheck check . --fix

# JSON output (for CI/CD pipelines)
opencheck check . --json

# Generate GitHub Actions workflow file
opencheck check . --gha

Example Output

🔍 OpenCheck Report
Checked at: 28.02.2026
Total packages: 42

  🔴 Critical: 1  🟡 Warning: 3  🟢 OK: 38

┌─────────────────────┬──────────┬──────────┬────────────┬─────────────┬─────────────────┬────────────┐
│ Package             │ Current  │ Latest   │ Updated    │ Downloads/wk│ Vulnerabilities │ Status     │
├─────────────────────┼──────────┼──────────┼────────────┼─────────────┼─────────────────┼────────────┤
│ lodash              │ 4.17.15  │ 4.17.21  │ 3y ago     │ 45M         │ HIGH            │ 🔴 CRITICAL│
│ moment ⚠️           │ 2.29.1   │ 2.30.1   │ 1y ago     │ 12M         │ none            │ 🟡 WARNING │
└─────────────────────┴──────────┴──────────┴────────────┴─────────────┴─────────────────┴────────────┘

🔧 Fix Commands:
  npm install [email protected]  ← has vulnerabilities!
  npm install [email protected]

  Run all at once:
  npm install [email protected] [email protected]

HTML Report

Run opencheck check . --html to generate a beautiful opencheck-report.html file in your project directory.

GitHub Actions

Auto-generate a workflow file with:

opencheck check . --gha

Or add manually to your workflow:

- name: Check dependencies
  run: npx opencheck-cli check . --only-issues

- name: Export HTML Report
  if: always()
  run: npx opencheck-cli check . --html

- name: Upload Report
  if: always()
  uses: actions/upload-artifact@v4
  with:
    name: opencheck-report
    path: opencheck-report.html

Roadmap

  • [x] v0.1 - CLI
  • [x] v0.2 - HTML report export
  • [x] v0.3 - GitHub Actions integration
  • [x] v0.4 - Fix suggestions & JSON output
  • [ ] v1.0 - Web dashboard
  • [ ] v1.1 - Pro plan (team features, Slack notifications)

Contributing

PRs welcome! See CONTRIBUTING.md.

License

MIT © chefHarun