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

hyena-studio

v0.1.0

Published

Instant code health check for React & React Native projects — 30 rules, zero config

Readme

hyena

Instant code health check for React & React Native projects.

30 rules. Zero config. Just run it.

Quick Start

npx hyena-studio

That's it. Hyena scans your project, shows a terminal summary, and opens a browser dashboard with detailed findings.

What It Checks

| Category | Rules | Examples | |---|---|---| | Architecture | 5 | Large components, deep nesting, prop drilling, god components, barrel bloat | | Design | 5 | Hardcoded colors, magic numbers, spacing inconsistency, duplicate styles, border radius | | Accessibility | 5 | Missing labels, small touch targets, color contrast, missing alt text, missing roles | | Performance | 5 | Inline styles, unused imports, anonymous functions in JSX, unvirtualized lists, expensive rerenders | | Best Practices | 10 | Console logs, empty catch blocks, missing error boundaries, TODO comments, useEffect without deps |

CLI Options

npx hyena-studio                      # scan + open dashboard
npx hyena-studio --ci                 # CI mode (exit code 1 if score < 70)
npx hyena-studio --ci --threshold 80  # custom threshold
npx hyena-studio --no-dashboard       # terminal only
npx hyena-studio --no-report          # skip writing report file
npx hyena-studio --json               # raw JSON output
npx hyena-studio --verbose            # show all findings in terminal

Scoring

Each category is scored 0-100. Penalties: critical = -10, warning = -3, info = -1.

Overall score is a weighted average:

  • Accessibility: 25%
  • Architecture: 20%
  • Design: 20%
  • Performance: 20%
  • Best Practices: 15%

CI/CD Integration

# GitHub Actions
- name: Code Health Check
  run: npx hyena-studio --ci --threshold 75

Scan History

Hyena tracks your scores over time in .hyena/history.json. Each scan shows the delta from your last run.

Links

License

MIT