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

whatisgoingon

v1.0.9

Published

Browse and explore your Cursor AI chat history with a beautiful web UI

Readme

🔍 What Is Going On?

A beautiful web UI to browse and explore your Cursor AI chat history.

Screenshot

Features

  • 📅 Date-based navigation - Browse chats by date with conversation counts
  • 💬 Conversation viewer - See full chat content with user/AI messages
  • 📆 Date separators - Messages grouped by date with auto-scroll to selected day
  • Multi-select - Select multiple conversations for export
  • 📋 Summary generation - Generate markdown summaries with date filtering (Today/Yesterday/All)
  • 🎨 Beautiful UI - Modern dark theme with smooth animations

Quick Start

npx whatisgoingon

This will start the server and automatically open your browser to http://localhost:3456.

Local Development

Installation

# Clone the repository
git clone <your-repo-url>
cd whatshappening

# Install dependencies
pnpm install
cd frontend && pnpm install && cd ..

# Build native dependencies (required for better-sqlite3)
cd node_modules/.pnpm/better-sqlite3@*/node_modules/better-sqlite3
npm run build-release
cd -

Testing Locally (with build - production mode)

# Build everything (server + frontend)
pnpm build

# Start the app
pnpm start
# or
node bin/cli.js

Then open http://localhost:3456 in your browser.

Testing Locally (without build - development mode)

For hot-reload during development:

# Terminal 1: Start the backend server with auto-reload
pnpm dev:server

# Terminal 2: Start the frontend dev server
pnpm dev:frontend

Or run both simultaneously:

pnpm dev
  • Backend runs on: http://localhost:3456
  • Frontend dev server runs on: http://localhost:5173 (with API proxy to backend)

Build Commands

| Command | Description | |---------|-------------| | pnpm build | Build both server and frontend | | pnpm build:server | Build only the TypeScript server | | pnpm build:frontend | Build only the React frontend | | pnpm start | Start the production server | | pnpm dev | Start both servers in dev mode | | pnpm dev:server | Start backend with hot-reload | | pnpm dev:frontend | Start frontend with hot-reload |

How It Works

This tool reads your local Cursor AI chat data from:

  • macOS: ~/Library/Application Support/Cursor/User/workspaceStorage/
  • Windows: %APPDATA%/Cursor/User/workspaceStorage/
  • Linux: ~/.config/Cursor/User/workspaceStorage/

All data is processed locally - nothing is sent to any external server.

Tech Stack

  • Backend: Node.js, Express 5, better-sqlite3
  • Frontend: React 19, Vite, Tailwind CSS v4, Base UI
  • CLI: Node.js with open (for launching browser)

Requirements

  • Node.js 18+ (20.19+ or 22.12+ recommended for Vite)
  • Cursor IDE installed (with some chat history)
  • Build tools for native modules:
    • macOS: Xcode Command Line Tools (xcode-select --install)
    • Windows: Visual Studio Build Tools
    • Linux: build-essential package

Troubleshooting

"No chats found"

This usually means Cursor is running and has locked the database files. The app should still work, but you may need to restart Cursor or wait a moment.

Native module build errors

If you get errors about better-sqlite3 bindings not found:

cd node_modules/.pnpm/better-sqlite3@*/node_modules/better-sqlite3
npm run build-release

License

MIT