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

@atercates/claude-deck

v0.2.25

Published

Self-hosted web UI for managing Claude Code sessions

Downloads

3,119

Readme

ClaudeDeck

Self-hosted web UI for managing Claude Code sessions.

Installation

Quick Install

curl -fsSL https://raw.githubusercontent.com/ATERCATES/claude-deck/main/scripts/install.sh -o /tmp/install-claudedeck.sh
bash /tmp/install-claudedeck.sh

The installer will:

  • Install Node.js 24, pnpm, and tmux if needed
  • Ask for port, SSH host/port (for VS Code remote button)
  • Clone, build, and start as a systemd service
  • First visit prompts you to create an account

Non-Interactive

curl -fsSL https://raw.githubusercontent.com/ATERCATES/claude-deck/main/scripts/install.sh | bash -s -- --port 3011 --ssh-host myserver.com --ssh-port 22 -y

Manual Install

git clone https://github.com/ATERCATES/claude-deck
cd claude-deck
pnpm install
pnpm build
pnpm start  # http://localhost:3011

Prerequisites

  • Node.js 24+
  • tmux (with set -g mouse on in ~/.tmux.conf)
  • Claude Code

Configuration

Create a .env file in the project root:

PORT=3011

# SSH config for "Open in VS Code" remote button (optional)
SSH_HOST=myserver.example.com
SSH_PORT=22

Features

  • Session management - Resume, create, and organize Claude Code sessions
  • Mobile-first - Full functionality from your phone
  • Multi-pane layout - Run up to 4 sessions side-by-side
  • Active session monitoring - Real-time status (running/waiting/idle)
  • Code search - Fast codebase search with syntax-highlighted results (Cmd+K)
  • Git integration - Status, diffs, commits, PRs from the UI
  • Git worktrees - Isolated branches with auto-setup
  • Dev servers - Start/stop Node.js and Docker servers
  • Session orchestration - Conductor/worker model via MCP
  • VS Code integration - Open projects in VS Code with one click (supports SSH remote)
  • Auth - Login with username/password, optional TOTP 2FA

Service Management

sudo systemctl start claudedeck
sudo systemctl stop claudedeck
sudo systemctl restart claudedeck
sudo systemctl status claudedeck
sudo journalctl -u claudedeck -f   # tail logs

Reverse Proxy (nginx)

For HTTPS access behind nginx:

map $http_upgrade $connection_upgrade {
    default upgrade;
    ''      close;
}

server {
    listen 443 ssl;
    server_name claudedeck.example.com;

    ssl_certificate     /path/to/cert.pem;
    ssl_certificate_key /path/to/key.pem;

    location / {
        proxy_pass http://127.0.0.1:3011;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;

        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection $connection_upgrade;

        proxy_read_timeout 86400s;
        proxy_send_timeout 86400s;
    }
}

Mobile Access

Use Tailscale for secure access from your phone:

  1. Install Tailscale on your dev machine and phone
  2. Sign in with the same account
  3. Access http://100.x.x.x:3011 from your phone

Documentation

Detailed technical docs are in docs/:

Related Projects

  • aTerm - Native desktop terminal workspace for AI-assisted coding
  • LumifyHub - Team collaboration platform with real-time chat and structured documentation

License

MIT License - Free and open source.

See LICENSE for full terms.