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

stacklit

v0.4.0

Published

Zero-config codebase context for AI agents. One command generates a ~250-token navigation map and auto-configures Claude Code, Cursor, and Aider.

Downloads

261

Readme

Stacklit

Your codebase, in 1,500 tokens.

One command generates a committed JSON index that any AI agent can read. No server, no setup.

CI npm downloads License platform node

Quick start

npx stacklit init

Stacklit demo

Without stacklit: Agent reads 8-12 files to build context. ~400,000 tokens. 45 seconds before writing a line.

With stacklit: Agent reads stacklit.json. ~1,500 tokens. Knows every module, dependency, and convention instantly.

What you get

| File | What it does | Committed? | |------|-------------|------------| | stacklit.json | Machine-readable codebase index | Yes | | DEPENDENCIES.md | Mermaid dependency diagram (renders on GitHub) | Yes | | stacklit.html | Interactive visual map with 4 views | No (gitignored) |

Visual map

Stacklit visual map

MCP server

stacklit serve

Add to Claude Desktop or Cursor MCP config:

{
  "mcpServers": {
    "stacklit": {
      "command": "stacklit",
      "args": ["serve"]
    }
  }
}

Seven tools: get_overview, get_module, find_module, list_modules, get_dependencies, get_hot_files, get_hints.

CLI

stacklit init                    # scan, generate all outputs, open HTML
stacklit generate                # regenerate from current source
stacklit view                    # regenerate HTML and open in browser
stacklit diff                    # check if index is stale
stacklit serve                   # start MCP server

Language support

Go (AST), TypeScript, JavaScript, Python, Rust, Java (regex), plus generic fallback for any language.

Compared to alternatives

| | Stacklit | Repomix | Aider repo-map | Codebase Memory MCP | |---|---|---|---|---| | Output | ~1,500 token JSON | 500k+ token dump | Ephemeral text | SQLite DB | | Committed to repo | Yes | Too large | No | No | | Dependency graph | Yes | No | Yes | Yes | | Visual output | HTML (4 views) | No | No | No | | MCP server | Yes | No | No | Yes | | Runtime needed | No | No | Yes (Python) | Yes (C server) |

Links

License

MIT