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

blame-me

v1.0.0

Published

A fun CLI tool that analyzes your Git repo and tells you who is responsible for the mess 😬

Readme

blame-me 😬

A fun CLI tool that analyzes your Git repository and tells you who is responsible for the mess.


Features

| Feature | What it does | |---|---| | πŸ“Š Commit overview | Total commits + per-author breakdown with progress bars | | πŸ‘₯ Top 3 contributors | Ranked leaderboard with medals πŸ₯‡πŸ₯ˆπŸ₯‰ | | πŸ’¬ Message quality | Detects lazy commit messages (fix, temp, final, etc.) | | πŸ”₯ --roast flag | Personalised humorous commentary on your contribution | | --dir <path> | Point at any repo, not just cwd |


Build & Install

1. Install dependencies

npm install

2. Compile TypeScript β†’ JavaScript

npm run build

This runs tsc and emits compiled files to dist/.

3. Test locally with npm link

npm link

This creates a global symlink so you can run blame-me from any directory:

blame-me                     # analyse the current repo
blame-me --roast             # adds a humorous personal roast
blame-me --dir ~/my-project  # analyse a different repo
blame-me --version           # print version
blame-me --help              # usage info

4. Unlink when done

npm unlink -g blame-me

Project Structure

blame-me/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ index.ts      # CLI entry point (commander wiring + display)
β”‚   β”œβ”€β”€ git.ts        # Git command helpers (spawnSync wrappers)
β”‚   β”œβ”€β”€ analyzer.ts   # Pure data analysis (no I/O, no side-effects)
β”‚   └── utils.ts      # Display helpers (progress bar, roast generator)
β”œβ”€β”€ dist/             # Compiled JS output (after npm run build)
β”œβ”€β”€ package.json
└── tsconfig.json

Design decisions

  • Synchronous (spawnSync) git execution β€” this is a one-shot interactive CLI, so blocking is fine and makes the code much simpler than async chains.
  • chalk v4 β€” used because chalk v5 is ESM-only, incompatible with "module": "commonjs" in tsconfig.
  • Zero business logic in index.ts β€” all data crunching lives in analyzer.ts (pure functions), display utilities in utils.ts. Easy to test independently.

Example Output

  πŸ”  blame-me  Β·  Git Responsibility Analyzer
  ────────────────────────────────────────────

  πŸ“Š  Commit Overview
  Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·
  Total commits : 238

  😬  You wrote 52% of this repo
        β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘ 124 commits

  πŸ‘₯  Top Contributors
  Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·
  πŸ₯‡  Yash (you)                           52%  124 commits
       β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  πŸ₯ˆ  Alice                                31%   74 commits
       β–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘
  πŸ₯‰  Bob                                  17%   40 commits
       β–ˆβ–ˆβ–ˆβ–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘β–‘

  πŸ’¬  Commit Message Quality
  Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·Β·
  πŸ’€  Worst commit message : "final final fix"
  🚩  Lazy commits found   : 17 / 238 total

  ────────────────────────────────────────────

  πŸ”₯  ROAST MODE
  Archaeology called β€” they found your 'final final fix' commit and they're confused too πŸ¦•

  ────────────────────────────────────────────
  blame-me v1.0.0  Β·  no blame, just data πŸ˜‡