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

@nreactive/cli

v0.2.0

Published

Pre-deploy risk scanner for nreactive — `npx nreactive scan` packs your repo, posts it to /api/scan, and prints the top risks inline. CI-friendly with exit codes for GitHub Actions / GitLab CI.

Readme

nreactive

Pre-deploy risk scanner for nreactive. Catches bugs before they ship.

npx nreactive scan

That's it — no install, no signup. Packs the current repo, posts it to https://nreactive.com/api/scan, prints the top risks inline.

Install

Zero-install with npx (above) is the easiest path. If you want nreactive on your $PATH:

npm  i -g @nreactive/cli   # or
pnpm add -g @nreactive/cli # or
bun  add -g @nreactive/cli

The package is published as @nreactive/cli but the binary it installs is named nreactive — same command either way:

nreactive scan

What it catches

The same classes of issues nreactive's runtime SDK reports post-deploy, but found by static analysis on your repo:

  • Unhandled promise rejections / missing await
  • Hardcoded secrets and credentials
  • Missing input validation on routes
  • Race conditions and shared-state bugs
  • Mis-typed env access (process.env.X where X isn't declared)
  • Common N+1 patterns

Findings come back with severity, file:line, a short description, and a suggested fix.

CI mode

npx nreactive scan --ci --min-severity high

Exits non-zero if any finding ≥ --min-severity exists. Drop into your pipeline:

# .github/workflows/scan.yml
- run: npx nreactive scan --ci --min-severity high

Flags

| Flag | Default | Description | |---|---|---| | --endpoint | https://nreactive.com | Backend base URL. Override with NREACTIVE_ENDPOINT. | | --token | (none) | Bearer token. First scan works anonymously; signed-in scans link to your dashboard. Override with NREACTIVE_TOKEN. | | --ci | false | Exit non-zero on findings ≥ --min-severity. | | --min-severity | high | One of critical, high, medium, low. | | --max-bytes | 5000000 | Hard cap on the packed-repo size. | | --json | false | Emit the raw ScanResponse JSON on stdout (for piping into other tools). | | --cwd | process.cwd() | Repository root to scan. |

Exit codes

| Code | Meaning | |---|---| | 0 | OK (or non-CI mode regardless of findings) | | 1 | CI mode: findings ≥ --min-severity | | 2 | Usage error (bad flag) | | 3 | Network error reaching the backend | | 70 | Internal error (file the issue at https://nreactive.com) |

CI distinguishes "scanner found bugs" (1) from "scanner is broken" (3, 70).

How it works

  1. Repo is packed locally with Repomix (XML format, default ignore rules).
  2. The pack is POSTed to {endpoint}/api/scan?mode=cli.
  3. The backend runs the same analyzers that power the dashboard, returns a compact response (scanId, top risks, summary, optional reportUrl).
  4. Output is rendered with chalk; --json emits the raw response.

No code is stored unless you're signed in and explicitly opt in (your dashboard tracks scan history). Anonymous scans are deleted after analysis.

Wire contract

Public, stable across patch versions:

// POST {endpoint}/api/scan?mode=cli
interface ScanRequest {
  pack: string;                          // Repomix XML output
  meta: {
    cliVersion: string;
    repoName?: string;                   // "owner/repo"
    branch?: string;
    commit?: string;
  };
}

interface Risk {
  id: string;
  severity: "critical" | "high" | "medium" | "low";
  title: string;
  file?: string;
  line?: number;
  description: string;
  suggestedFix?: string;
}

interface ScanResponse {
  scanId: string;
  risks: Risk[];
  summary: { totalRisks: number; bySeverity: Partial<Record<Severity, number>> };
  reportUrl?: string;
}

Self-loop safety: every request includes x-nreactive-self: 1 so the runtime SDK's HTTP-client integration skips it when both ship in the same project.

Related packages

License

PROPRIETARY. See LICENSE.