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

@abhinandhajay/prettydiff

v0.2.0

Published

Open the working-tree diff of any git repo in a local web viewer.

Downloads

305

Readme

prettydiff

npm version license

A refined local web viewer for your Git working tree changes. Run prettydiff inside any Git repository and a browser tab opens with a side-by-side or unified diff of every modified, added, deleted, renamed, and untracked file.

prettydiff screenshot

Features

  • Side-by-side and unified diff views
  • File-tree sidebar with status indicators and addition/deletion counts
  • Inline comments on diff lines with edit/delete controls
  • Comments sidebar with jump-to-line navigation and AI-ready copy
  • Collapsible per-file cards
  • Detects modified, added, deleted, renamed, and untracked files
  • Zero config — runs in any Git repo

Installation

Requirements: Node >=18.17 and Git.

npm install -g @abhinandhajay/prettydiff
# or
bun add -g @abhinandhajay/prettydiff

Local install from a clone:

bun install
bun run build
npm link

Usage

From inside any Git repo with uncommitted changes:

prettydiff

Options:

| Flag | Description | | ----------------- | -------------------------------------------------------- | | --port <n> | Preferred port (default: auto-selected in 39400-39499) | | --no-open | Don't open the browser automatically | | --version, -v | Print version and exit | | --help, -h | Print help and exit |

Ctrl-C shuts down the server.

Development

Prerequisites: Bun, Node >=18.17, Git.

git clone <repo>
cd prettydiff
bun install

Run the web viewer in isolation against the sample fixture (Vite, port 5173, serves fixtures/sample-diff.json as /api/diff):

bun run dev

Build everything and run the CLI locally against a real repo:

bun run build
cd /path/to/some/git/repo
node /path/to/prettydiff/dist/cli/bin.js

Scripts

| Script | Purpose | | ---------------------- | ----------------------------------------------------------- | | bun run dev | Vite dev server for the web viewer with sample fixture | | bun run build | Full build: web bundle + CLI compilation | | bun run build:web | Bundle the web viewer to dist/web/ | | bun run build:cli | Compile the CLI to dist/cli/ and mark bin.js executable | | bun run start | Run the compiled CLI (node dist/cli/bin.js) | | bun run lint | Run Oxlint | | bun run lint:fix | Run Oxlint with --fix | | bun run format | Format all code with Oxfmt | | bun run format:check | Verify formatting without writing |

Project structure

src/
├── cli/                  Node-side CLI
│   ├── bin.ts            Executable entry point
│   ├── main.ts           Arg parsing, orchestration, lifecycle
│   ├── git.ts            Git operations (diff, ls-files, metadata)
│   ├── server.ts         Hono server (serves /api/diff + static viewer)
│   ├── port.ts           Port discovery in 39400-39499
│   └── types.ts          Shared types
└── web/                  React + Vite viewer
    ├── App.tsx           Root component
    ├── main.tsx          React entry
    ├── components/       UI components (Header, FileCard, FileTreeSidebar, …)
    ├── lib/              fetchDiff, types, treeSort, slug, hooks
    └── styles/           Tailwind globals
fixtures/sample-diff.json Dev-mode mock payload

Tech stack

TypeScript · React 19 · Vite 8 · Hono · Tailwind CSS 4 · Shadcn/ui · @pierre/diffs · parse-diff · mri · Oxlint · Oxfmt · Bun.

License

MIT