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

@yuwen_1577/reviewkit

v0.1.1

Published

AI-powered code review CLI tool for git diffs

Readme

reviewkit

npm version License: MIT Node.js

中文

Catch security issues, code smells, and risky changes before they reach production. Runs 100% locally, no API key needed.

npx @yuwen_1577/reviewkit

Demo

$ git add dangerous-file.ts && npx @yuwen_1577/reviewkit

ReviewKit — Code Review Report

  Summary:  1 file(s) changed, +36 -0. 3 critical issue(s) found

  Risk:     ████████████████████ 100/100

  Findings (7):

  ✖ config.ts     Possible hardcoded secret or credential    [hardcoded-secret]
  ✖ db.ts         SQL injection via string concatenation     [sql-injection]
  ✖ handler.ts    Dynamic code execution detected            [dangerous-exec]
  ▲ utils.ts      Empty catch block                          [empty-catch]
  ▲ main.ts       Recursive file deletion                    [dangerous-delete]
  ● app.ts        TODO/FIXME comment found                   [todo-comment]
  ● lib.ts        Console output left in code                [console-log]

What it detects

| Severity | Rules | |----------|-------| | Critical | Hardcoded secrets, SQL injection, dangerous eval/exec | | Warning | XSS (innerHTML), insecure protocols (HTTP), empty catch blocks, mass deletions, dangerous file ops | | Info | Console logs, TODO/FIXME, lint suppressions, large change blocks |

Usage

# Review staged changes (default)
reviewkit

# Review unstaged changes
reviewkit review --all

# Compare against a branch
reviewkit review --branch main

# Review last commit
reviewkit review --commit

# JSON output (for CI/CD)
reviewkit review --json

# Stats only
reviewkit stats

# Generate changelog draft
reviewkit changelog

Install

npm install -g @yuwen_1577/reviewkit

Or run without installing:

npx @yuwen_1577/reviewkit

CI/CD Integration

The CLI exits with code 1 when critical issues are found, so it works as a CI gate out of the box.

# GitHub Actions
- name: Code Review
  run: npx @yuwen_1577/reviewkit review --commit --json

How it works

reviewkit parses git diff output and applies pattern-based rules to detect common security and code quality issues. No data leaves your machine. No API key required.

Roadmap

  • [ ] AI-powered deep review (Claude / OpenAI integration)
  • [ ] More detection rules (dependency vulns, complexity analysis)
  • [ ] GitHub Actions integration with PR comments
  • [ ] VS Code extension

License

MIT