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

claude-dump

v0.3.1

Published

Real-time web viewer for Claude Code conversation history

Downloads

381

Readme

claude-dump

Real-time web dashboard for Claude Code.

Browse all your projects and sessions in a live-updating interface with syntax highlighting, diff views, and collapsible thinking blocks. Start new chats or resume existing ones directly in an embedded terminal, open sessions side-by-side in split panes, launch external terminal sessions, and jump straight into your editor — all from one window.

Install

npm install -g claude-dump

Usage

claude-dump

This starts a local server and opens the viewer in a standalone window (no URL bar) at http://localhost:3456. If Chrome or another Chromium-based browser is installed, it launches in app mode automatically.

Arguments

claude-dump [path] [options]

| Argument / Option | Default | Description | | ----------------- | -------------------- | ------------------------------------ | | path | ~/.claude/projects | Path to Claude projects directory | | --port <port> | 3456 | Port for the web server | | --no-open | | Don't open the browser automatically | | -h, --help | | Show help message |

Examples:

# Default — reads from ~/.claude/projects
claude-dump

# Custom projects directory
claude-dump /path/to/projects

# Custom port
claude-dump --port 8080

# Both
claude-dump /path/to/projects --port 8080

Features

  • Standalone window — opens in a chromeless app window (Chrome/Edge); also installable as a PWA
  • Live updates — conversations stream in real-time as you use Claude Code
  • Project browser — sidebar lists all your Claude Code projects and sessions
  • Split panes — open multiple sessions side-by-side (up to 4)
  • Embedded terminal — chat with Claude directly in the browser using an integrated XTerm terminal
  • New chat — start a fresh Claude conversation from any project via the sidebar dropdown
  • Resume chat — reopen existing sessions in the embedded terminal or launch in an external terminal
  • Delete sessions/projects — right-click context menu to remove sessions or entire projects
  • Light / dark mode — toggle between themes, preference is saved
  • Open in editor — open a project in Cursor or VS Code directly from the viewer
  • Recent activity — recent chats section with live activity badges and relative timestamps
  • Syntax highlighting — code blocks are highlighted automatically
  • Diff views — file edits and writes render as unified diffs
  • Thinking blocks — collapsible extended thinking sections
  • Tool call rendering — specialized views for Bash, Edit, Write, Read, Glob, and Grep tools
  • Session metadata — timestamps, git branch, model info, and message counts
  • Update notifications — banner appears when a newer version is available on npm

How it works

claude-dump reads from ~/.claude/projects/ (or a custom path), where Claude Code stores conversation history as JSONL files. It watches for changes and pushes updates to the browser over WebSocket.

Development

git clone https://github.com/kplates/claude-dump.git
cd claude-dump
npm install
npm run dev

Build

npm run build
npm start

Release

npm run release:patch   # 0.1.0 → 0.1.1
npm run release:minor   # 0.1.0 → 0.2.0
npm run release:major   # 0.1.0 → 1.0.0

License

MIT