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

@twle/vantage

v1.0.1

Published

Local-first code review and team evaluation tool for dev leads

Readme

Vantage

Local-first code review and team evaluation tool for dev leads.

Scan your local git repos, triage commits in a review queue, track team workload, and run AI-assisted evaluations — all from a single dashboard running on your machine. No cloud accounts required.

CI License Node


Quick Start

# Prerequisites: Node.js 20+, pnpm, git

# Clone and install
git clone https://github.com/ThanhWilliamLe/vantage.git
cd vantage
pnpm install

# Start (builds frontend + starts server)
pnpm start

# Open in your browser
# http://127.0.0.1:3847

First-Run Walkthrough

  1. Create a project — Settings > Projects > give it a name
  2. Add a repository — Expand the project > add a local git repo path
  3. Add team members — Settings > Members > add names
  4. Map identities — Expand a member > map their git email to their profile
  5. Scan — Review Queue auto-populates with commits from your repos
  6. Review — Triage commits: review, flag for discussion, or defer

Features

Review Queue

Scan local git repos and see all pending commits in one place. Select an item to view the full diff, AI summary, and linked tasks. Review, flag, or defer items individually or in batch.

Identity Resolution

Map git emails and platform usernames (GitHub, GitLab) to team members. Commits automatically attribute to the right person across all views.

AI-Powered Analysis

Connect any OpenAI/Anthropic-compatible API, or use a local CLI model (e.g. claude -p):

  • Auto-summaries — plain-language description of what changed and why
  • Categorization — bugfix, feature, refactor, config, docs, test
  • Risk assessment — low, medium, high based on change scope and complexity
  • Deep analysis — file-level findings with severity ratings
  • Daily pre-fill — AI drafts your daily check-up from git activity
  • Quarterly synthesis — AI summarizes a quarter into evaluation drafts with trend insights

GitHub & GitLab Sync

Enrich local commits with PR/MR metadata — status (open, merged, closed, draft), review state, and line counts. Supports GitHub.com and self-hosted GitLab instances.

Evaluations

  • Daily check-ups — quick per-member notes with workload scores
  • Quarterly evaluations — period summaries with AI-generated insights
  • CSV export — export evaluations for spreadsheets or HR systems

More

  • Dashboard — pending count, flagged items, active projects, team members, workload trends
  • Full-text search — search across commits, AI summaries, review notes, and evaluations
  • Workload view — commit volume by member and project over configurable date ranges
  • Command paletteCtrl+K or / to search members, projects, and navigate
  • Keyboard shortcutsj/k to navigate the queue, r to review, f to flag, d to defer

Configuration

AI Provider Setup

Go to Settings > AI Provider and choose one:

Option A — API (OpenAI/Anthropic compatible): | Field | Example | |-------|---------| | Name | My OpenAI | | Type | API | | Preset | openai or anthropic | | Endpoint | https://api.openai.com/v1 | | API Key | sk-... | | Model | gpt-4o |

Option B — CLI (zero credentials): | Field | Example | |-------|---------| | Name | Claude CLI | | Type | CLI | | Command | claude | | I/O Method | stdin |

The CLI option works with any tool that reads a prompt from stdin and writes a response to stdout.

GitHub / GitLab Credentials

Go to Settings > Credentials to add platform tokens:

  • GitHub — personal access token with repo scope
  • GitLab — personal access token with read_api scope (add instance URL for self-hosted)

Then add a GitHub/GitLab repository to your project alongside the local repo.

Access Password

Optional. Go to Settings > Access Password to set a password gate. The server runs on 127.0.0.1 only, so this is mainly for shared workstations.

Data Storage

All data stays on your machine:

| Platform | Location | |----------|----------| | Windows | %APPDATA%\Vantage\ | | macOS | ~/Library/Application Support/vantage/ | | Linux | ~/.local/share/vantage/ |

Contains: vantage.db (SQLite), keyfile (AES-256-GCM encryption key for API tokens), logs/.

Security

  • Server binds to 127.0.0.1 only — not accessible from the network
  • API tokens encrypted at rest with AES-256-GCM
  • Optional access password (bcrypt hashed)
  • No telemetry, no cloud services, no data leaves your machine unless you configure an AI provider

Development

# Backend only (API on :3847)
pnpm dev

# Frontend dev server (HMR on :5173, proxies API to :3847)
pnpm dev:frontend

# Run all tests (400 backend + 36 frontend unit/integration)
pnpm test

# Run E2E tests (44 Playwright tests across 9 journeys)
pnpm test:e2e

# Type check
pnpm typecheck

# Lint
pnpm lint

# Coverage
pnpm test:coverage

Project Structure

packages/
  shared/       # TypeScript types, constants, status transitions
  backend/      # Fastify API server + SQLite database
    src/
      data/           # Drizzle ORM schema, migrations, test helpers
      crypto/         # AES-256-GCM encryption, bcrypt, keyfile management
      errors/         # Typed error hierarchy (7 classes)
      services/       # Business logic (project, member, scan, review, AI, etc.)
      integrations/   # Git CLI, GitHub API, GitLab API, AI providers
      routes/         # Fastify route handlers + integration tests
      plugins/        # Auth middleware
  frontend/     # React SPA (Vite + TanStack Router)
    src/
      routes/         # 10 views (dashboard, reviews, members, etc.)
      components/     # Sidebar, command palette, error banner, login gate
      hooks/          # TanStack Query API hooks
      stores/         # zustand (auth, UI state)
    e2e/              # Playwright E2E tests (9 journeys, 44 tests)

Tech Stack

TypeScript, Fastify, SQLite (better-sqlite3 + Drizzle ORM), React 19, Vite, TanStack Router/Query, Tailwind CSS v4, simple-git, Playwright.

Authors

Created by Thanh Le and Claude (Anthropic).

License

Apache License 2.0