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

mm_ccusage

v0.4.0

Published

Multi-Instance ccusage TUI Dashboard

Readme

ccusage-dashboard

A terminal UI dashboard that aggregates Claude Code usage and cost data from multiple machines (local + remote via SSH) into a single interactive interface.

Built with TypeScript, React (Ink), and SQLite.

Features

  • Multi-instance monitoring - Track usage across local and remote machines simultaneously
  • Auto-discovery - Automatically finds remote hosts from ~/.ssh/config
  • Four data views - Daily breakdown, monthly trends (ASCII bar charts), session details, and 5-hour billing block analysis
  • Summary panel - At-a-glance today/week/month cost totals with per-instance breakdown
  • Cost alerts - Warning banners when spending approaches configurable thresholds
  • Auto-refresh - Configurable refresh interval with countdown timer
  • Filtering - Interactive date range and instance filtering
  • Offline resilience - Falls back to cached SQLite data when remote hosts are unreachable
  • Keyboard-driven - Full keyboard navigation with help overlay

Prerequisites

  • Node.js >= 18
  • ccusage installed on each machine you want to monitor
  • SSH access configured for remote machines (key-based auth recommended)

Installation

git clone <repo-url>
cd multi_instance
npm install
npm run build

Usage

# Run the dashboard
node dist/cli.js

# Monitor specific hosts
node dist/cli.js --hosts local,labpc,gpu-server

# Set refresh interval (seconds)
node dist/cli.js --interval 60

# Filter by date range
node dist/cli.js --since 20260101 --until 20260131

CLI Options

| Flag | Description | Default | |------|-------------|---------| | --hosts <list> | Comma-separated hosts to monitor | All SSH hosts + local | | --since <YYYYMMDD> | Start date for data range | - | | --until <YYYYMMDD> | End date for data range | - | | --interval <seconds> | Auto-refresh interval | 300 |

Keyboard Shortcuts

| Key | Action | |-----|--------| | 1 - 4 | Switch tabs (Daily / Monthly / Sessions / Blocks) | | j / Down | Next row | | k / Up | Previous row | | Enter | Expand/collapse row details | | r | Manual refresh | | f | Open filter dialog | | ? | Toggle help overlay | | q / Ctrl+C | Quit |

Configuration

Create ~/.ccusage-dashboard.json (or ~/.config/ccusage-dashboard/config.json):

{
  "refreshInterval": 300,
  "timezone": "America/New_York",
  "dataDir": "~/.ccusage-dashboard",
  "thresholds": {
    "global": {
      "dailyLimit": 10,
      "monthlyLimit": 100
    },
    "perInstance": {
      "labpc": { "dailyLimit": 5 },
      "h100": { "monthlyLimit": 50 }
    }
  }
}

Development

# Watch mode (recompile on changes)
npm run dev

# Type checking
npm run typecheck

# Run tests
npm test

Project Structure

src/
  cli.tsx              # CLI entry point
  app.tsx              # Main App component
  types.ts             # Shared TypeScript interfaces
  config.ts            # Config file loader
  ssh-config-parser.ts # SSH host discovery
  resolve-config.ts    # Merge CLI flags + config + SSH hosts
  components/          # Ink React components (views, dialogs, overlays)
  hooks/               # React hooks (data fetching, refresh, navigation)
  fetchers/            # Multi-instance data fetching (local + SSH)
  db/                  # SQLite schema and repository
  utils/               # Color assignment, alert computation

License

ISC