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

@cdli/holy-graph

v1.0.0

Published

A 3D visualization that replays a codebase's git history commit by commit.

Readme

Holy Graph

A 3D visualization that replays your codebase's git history — commit by commit.

Holy Graph screenshot

Holy Graph turns a git repository into a 3D scene: every source file is a glowing point, co-changing files link up, modules cluster, and hot files float above the plane. Not a git-log viewer — a semantic view of how your architecture grew.

Quick start

# in any git repository
npx @cdli/holy-graph

Opens the visualization in your browser at http://localhost:5173. To export a shareable single-file HTML:

npx @cdli/holy-graph --out viz.html

Gallery

Pre-rendered animations of well-known codebases live at holygraph.cdli.ai.

What you're seeing

  • Points — source files. Colour = module (e.g. apps/atlas), size = recent activity (decays over time), height = how hot the file is right now.
  • Dim lines — files in the same module that change together.
  • Bright lines — cross-module co-change. These are the architectural bridges worth watching.
  • Rings — bright: file was just born. Soft: file was just touched.
  • Sparks along edges = signal rippling from a file touched in the current commit toward its strongest co-change neighbours.
  • Beacons mark each module's home. Hover a point or beacon for details.

How it works

  1. src/extract/ walks git log --numstat -M70%, resolves renames into stable file ids, and emits per-commit deltas plus cluster-cluster affinity to data.json.
  2. src/renderer/ replays those deltas with time-based decay on activity and edge weights.
  3. A d3-force-3d simulation lays clusters out seeded by affinity; a second sim places files inside each cluster. Three.js draws the scene.

Configuration

Drop a holy-graph.config.js (or .mjs / .ts) next to your repo:

// holy-graph.config.mjs
export default {
  port: 3000,
  extract: {
    maxFilesPerCommit: 40,
    minFileTotalTouches: 3,
    // exclude: [/\/fixtures\//, /\.generated\.ts$/],
  },
};

All keys are optional. CLI flags (--port, --since, --config) override config values.

Available knobs

| Setting | Effect | | --- | --- | | port | Dev server port (default: 5173, falls back if busy) | | extract.maxFilesPerCommit | drop bulk-rewrite commits (default: 80) | | extract.minFileTotalTouches | prune rarely-touched files (default: 2) | | extract.exclude | path regexes to ignore (adds to defaults) |

Controls

Drag to orbit · scroll to zoom · right-drag to pan · play/scrub from the HUD · click a module chip to zoom into it · double-click anywhere to reset.

License

FSL-1.1-ALv2 — source-available, non-competing use permitted, auto-converts to Apache 2.0 on the second anniversary of each release.

Author

Built by Fatih Burak Karagöz as part of CDLIIntelligence for Developers · Insights for Products · Impact for Business. Source on github.com/cdliai/holy-graph.