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

ralph-dashboard

v2.3.8

Published

Web dashboard for Ralph Wiggum loops - view active and archived sessions

Downloads

107

Readme

Ralph Dashboard

CI codecov tests npm version TypeScript Bun React License: MIT

A web dashboard for monitoring and managing Ralph Wiggum loops.

Features

  • View Active Loops: See all currently running Ralph Wiggum loops in real-time
  • Loop History: Browse archived loops with statistics and details
  • Cancel Loops: Stop active loops directly from the dashboard
  • Delete History: Permanently remove archived loops from history
  • Statistics: Track success rates, durations, and iteration counts

Installation

# Using bun (recommended)
bunx ralph-dashboard

# Using npm
npx ralph-dashboard

Options

# Custom port
bunx ralph-dashboard --port 8080
bunx ralph-dashboard -p 8080

# Public access (bind to all interfaces)
bunx ralph-dashboard --host 0.0.0.0
bunx ralph-dashboard -h 0.0.0.0

# Both options
bunx ralph-dashboard -p 8080 -h 0.0.0.0

# Show help
bunx ralph-dashboard --help

Once running, open your browser to the displayed URL (default: http://localhost:3847).

Development

Prerequisites

Setup

# Install dependencies
bun install

# Start development server (frontend only)
bun run dev

# Start backend server
bun run dev:server

# Run tests
bun run test

# Run tests with coverage
bun run test:coverage

# Run e2e tests
bun run test:e2e

# Run e2e tests in UI mode
bun run test:e2e:ui

# Type check
bun run typecheck

# Build for production
bun run build

Project Structure

ralph-dashboard/
├── src/                    # Frontend React app
│   ├── components/         # React components
│   ├── hooks/              # React Query hooks
│   ├── lib/                # API client
│   └── __tests__/          # Frontend unit tests
├── server/                 # Backend Bun server
│   ├── api/                # API route handlers
│   ├── services/           # Business logic
│   └── __tests__/          # Backend unit tests
├── tests/
│   └── e2e/                # Playwright e2e tests
└── dist/                   # Production build

API Endpoints

| Method | Endpoint | Description | |--------|----------|-------------| | GET | /api/sessions | List all sessions | | GET | /api/sessions/:id | Get session details | | POST | /api/sessions/:id/cancel | Cancel an active session | | POST | /api/sessions/:id/archive | Archive an orphaned session | | DELETE | /api/sessions/:id | Permanently delete an archived session | | GET | /api/transcript/iterations/:loopId | Get paginated iteration transcripts | | GET | /api/transcript/full/:loopId | Get full transcript with user prompt | | GET | /api/transcript/check/:loopId | Check if transcript exists | | GET | /api/checklist/:loopId | Get checklist progress for a loop |

Data Sources

The dashboard reads from the following files in ~/.claude/ralph-wiggum-pro/:

| Directory | Purpose | |-----------|---------| | loops/ | Active loop state files (frontmatter + prompt) | | logs/sessions.jsonl | Session history (JSONL format) | | transcripts/ | Iteration and full transcript files |

Requirements

  • Ralph Wiggum Pro plugin must be installed and configured
  • Sessions are logged to ~/.claude/ralph-wiggum-pro/logs/sessions.jsonl
  • State files stored in ~/.claude/ralph-wiggum-pro/loops/

License

MIT