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

crewx-ui

v0.1.2

Published

Visual control center for CrewX CLI agents (Web + Electron)

Readme

CrewX UI

Visual control center for CrewX CLI agents (Web + Electron)

Features

  • 🎯 CLI Version Management: Track and update CLI tools (Claude, Gemini, Copilot, CrewX)
  • 🔄 Dual Deployment: Web (npx) + Desktop (Electron)
  • 🏗️ Architecture: NestJS backend + React frontend + Vite
  • 🌐 Transport Abstraction: Easy switching between web/electron/mock

Quick Start

1. Install Dependencies

npm install

2. Run Development Server

npm run dev

This will start:

  • UI: http://localhost:8200 (Vite dev server)
  • API: http://localhost:8201 (NestJS server)

3. Build

# Web version
npm run build:web

# Electron version (desktop app)
npm run build:electron

Project Structure

crewx-ui/
├── src/
│   ├── server/              # NestJS backend
│   │   ├── main.ts
│   │   ├── app.module.ts
│   │   └── domain/
│   │       └── cli/         # CLI version management domain
│   │           ├── cli.module.ts
│   │           ├── cli.controller.ts
│   │           ├── cli.service.ts
│   │           └── dto/
│   └── ui/                  # React frontend
│       ├── main.tsx
│       ├── App.tsx
│       ├── pages/
│       │   └── cli-manager/ # CLI version management page
│       └── lib/
│           └── api/         # Transport abstraction layer
│               ├── transport.ts
│               ├── client.ts
│               └── types.ts
├── docs/
│   └── 설계서.md
├── package.json
├── vite.config.ts
├── tsconfig.json
└── README.md

API Endpoints

CLI Version Management

GET /api/v1/cli/versions

CLI 목록 조회

Response:

{
  "success": true,
  "data": [
    {
      "name": "claude",
      "displayName": "Claude Code",
      "installed": true,
      "currentVersion": "1.0.42",
      "latestVersion": "1.0.45",
      "updateAvailable": true,
      "packageName": "@anthropic-ai/claude-code"
    }
  ]
}

POST /api/v1/cli/update

CLI 업데이트

Request:

{
  "name": "claude"
}

Response:

{
  "success": true,
  "name": "claude",
  "previousVersion": "1.0.42",
  "newVersion": "1.0.45",
  "message": "Updated Claude Code from 1.0.42 to 1.0.45"
}

GET /api/v1/cli/check

CLI 상태 체크

Query: ?name=claude

Response:

{
  "name": "claude",
  "installed": true,
  "currentVersion": "1.0.42",
  "latestVersion": "1.0.45",
  "path": "/usr/local/bin/claude",
  "authenticated": false
}

Transport Abstraction

Usage

import { CrewXClient } from './lib/api/client'
import { fetchTransport, mockTransport } from './lib/api/transport'

// Production (default)
const api = new CrewXClient('', fetchTransport)

// Testing
const api = new CrewXClient('', mockTransport)

// Usage
const versions = await api.getVersions()

Benefits

  • ✅ Same code for Web/Electron
  • ✅ Easy unit testing with mock transport
  • ✅ Single source of truth for API calls

Development

# Start dev server
npm run dev

# Type check
npm run type-check

# Lint
npm run lint

Deployment

Web (npx)

npm run build:web
# Deploy dist/ to npm as `crewx-ui`

Desktop (Electron)

npm run build:electron
# Creates installers in release/

License

MIT


Created by: SowonLabs Contact: [email protected]