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

@chrishdx/llm-dev-server

v1.2.10

Published

Multi-LLM Development Server (Claude, Codex, Gemini) - A unified interface for AI coding assistants

Readme

LLM Dev Server

A unified Multi-LLM Development Server supporting Claude, Codex, and Gemini. Provides a web-based interface to interact with multiple AI coding assistants from a single dashboard.

Features

  • 🤖 Multi-LLM Support: Claude (Anthropic), Codex (OpenAI), Gemini (Google)
  • 💬 Unified Chat Interface: Single UI to interact with all providers
  • 📁 File Operations: AI-assisted file management and editing
  • 🔒 Authentication: Built-in user management with JWT
  • 🔄 Token Management: Automatic credential refresh
  • 🏠 Local Data Storage: All data stored in ~/.dev_server

Installation

npm install -g @chrishdx/llm-dev-server

Quick Start

# Start the server (first run initializes configuration)
llm-dev-server

# Or with custom port
llm-dev-server start --port 8080

On first run, the server will:

  1. Create ~/.dev_server directory
  2. Generate a configuration file at ~/.dev_server/.env
  3. Create an admin user (credentials shown in console)
  4. Start the web server at http://localhost:3000

Commands

llm-dev-server              # Start server (default)
llm-dev-server start        # Start server
llm-dev-server init         # Initialize configuration only
llm-dev-server config       # Show current configuration
llm-dev-server help         # Show help

Configuration

All configuration is stored in ~/.dev_server/.env:

# Server Settings
NODE_ENV=production
PORT=3000
LOG_LEVEL=info

# Security (auto-generated)
JWT_SECRET=your-jwt-secret
ENCRYPTION_KEY=your-encryption-key

# CORS
ALLOWED_ORIGINS=http://localhost:3000

# Proxy Settings (for reverse proxy)
# TRUST_PROXY=true

# Authelia SSO (optional)
# AUTHELIA_ENABLED=false
# AUTHELIA_ADMIN_GROUPS=admins

Data Directory Structure

~/.dev_server/
├── .env                    # Configuration file
├── data/
│   ├── dev-server.db      # SQLite database
│   ├── claude/            # Claude credentials & cache
│   ├── codex/             # Codex credentials
│   └── gemini/            # Gemini credentials
├── workspaces/            # Project workspaces
└── logs/                  # Server logs

Environment Variables

| Variable | Default | Description | | ----------------- | ----------------------- | --------------------------- | | DEV_SERVER_HOME | ~/.dev_server | Base directory for all data | | PORT | 3000 | Server port | | NODE_ENV | production | Environment mode | | JWT_SECRET | auto-generated | JWT signing secret | | ENCRYPTION_KEY | auto-generated | Data encryption key | | ALLOWED_ORIGINS | http://localhost:3000 | CORS allowed origins | | TRUST_PROXY | false | Trust reverse proxy headers | | LOG_LEVEL | info | Logging level |

LLM Provider Setup

Claude (Anthropic)

  1. Navigate to Settings > Providers in the web UI
  2. Click "Login with Claude"
  3. Follow the OAuth flow to authenticate

Codex (OpenAI)

  1. Navigate to Settings > Providers
  2. Click "Login with Codex"
  3. Authenticate via browser

Gemini (Google)

  1. Navigate to Settings > Providers
  2. Click "Login with Gemini"
  3. Complete Google OAuth

Development

# Clone repository
git clone https://github.com/chrishdx/llm-dev-server.git
cd llm-dev-server

# Install dependencies
npm install

# Run in development mode (with hot reload)
npm run dev

# Build for production
npm run build

# Run production build locally
npm start

API Endpoints

| Endpoint | Description | | -------------------------------------- | -------------------- | | GET /api/health | Health check | | POST /api/auth/login | User login | | GET /api/conversations | List conversations | | POST /api/conversations | Create conversation | | POST /api/conversations/:id/messages | Send message | | GET /api/jobs | List background jobs |

Tech Stack

  • Backend: Node.js, Express, TypeScript, SQLite, Sequelize
  • Frontend: React, TypeScript, Material-UI, Vite
  • Auth: JWT, bcrypt
  • LLM SDKs: Claude Agent SDK, Codex SDK, Gemini CLI

Requirements

  • Node.js >= 20.0.0
  • npm >= 10.0.0

License

MIT © Christian Schindler