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

reviewui

v1.2.1

Published

Review any git branch like a GitHub PR, locally, and hand the comments to your coding agent as a prompt.

Readme

ReviewUI

npm version license

GitHub: https://github.com/RazHaimovich/ReviewUI

Review any git branch like a GitHub pull request, locally, and turn your review comments into a single prompt for your coding agent (Claude Code, Codex, or anything else that takes a prompt).

cd your-repo
npx reviewui

Opens a review UI at http://localhost:41096 comparing your current branch against main/master. Browse the diff (final result, commit by commit, or the work you haven't committed yet), leave comments on lines or ranges, then click Generate Prompt - the assembled feedback is copied to your clipboard and printed to the terminal, ready to paste into Claude Code, Codex, or any other agent.

Requires Node 18+ and git on your PATH. Nothing to install and nothing to configure.

What you get

  • Review work you haven't committed yet. Uncommitted changes show up as the newest entry in the commit bar, with no id, and the default view includes them. Nothing reloads on its own: Refresh re-reads the repo when you ask. Files git doesn't track yet can't appear in a diff, so they're counted above the file tree instead - git add them to bring them into the review.
  • Side-by-side or unified diff, with only the words that changed highlighted.
  • Syntax highlighting that covers extensionless files like Dockerfile too.
  • Pick any base and compare branch, not just the default guess.
  • Review the whole branch at once or step through it commit by commit.
  • Widen the context around a file's changes from 3 lines to 20 to the whole file.
  • Hide whitespace-only changes when a branch carries a formatting pass.
  • Filter the file tree by name, hide files you've marked viewed, or show only the ones you commented on.
  • Tag each comment must-fix, question or nit, so your agent knows what blocks.
  • Keyboard navigation: j/k between files, v to mark viewed, / to filter, g to generate, ? for the full list.
  • Line and range comments, plus an overall summary, bundled into one prompt.
  • Light and dark themes.

Options

npx reviewui --help

| Flag | Effect | | --------------- | ------------------------------------------------------------------ | | --port <n> | Pin an exact port. Fails if taken; unset, it auto-increments. | | --base <ref> | Branch, tag or commit to compare against. Default main/master. | | --no-open | Do not open a browser. | | -h, --help | Show usage. | | -v, --version | Show the version. |

REVIEWUI_PORT and REVIEWUI_NO_OPEN do the same as --port and --no-open. A flag wins over the matching environment variable, and a --base that does not resolve fails at startup rather than in the browser.

The server binds to 127.0.0.1 only, keeps comments in memory for the session, and never writes into the repository it is reviewing.

Development

npm install
npm run build        # build the web UI into web/dist
npm test             # HTTP API tests against a fixture repo, plus unit tests
node server/index.js # run from inside any git repo
npm run dev:web      # Vite dev server (proxies /api to :41096)