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

@surfjs/devui

v0.5.0

Published

Interactive introspection UI for Surf-enabled applications

Readme

@surfjs/devui

Interactive browser-based dev inspector for Surf-enabled apps.

npm License: MIT


A visual inspector that mounts alongside your app in development. Browse commands, test execution, inspect responses — all in the browser.

Part of the Surf.js ecosystem.

npm install @surfjs/devui

Quick Start

import { createSurf } from '@surfjs/core';
import { createDevUI } from '@surfjs/devui';

const surf = createSurf({
  name: 'My App',
  commands: { /* ... */ },
});

const devui = createDevUI(surf, { port: 4242 });
const { url } = await devui.start();
console.log(`DevUI at ${url}`); // → http://localhost:4242/__surf

Usage

Standalone Server

Runs its own HTTP server that also proxies Surf endpoints:

const devui = createDevUI(surf, { port: 4242 });
const { url } = await devui.start();
// DevUI at http://localhost:4242/__surf
// Manifest at http://localhost:4242/.well-known/surf.json
// Execute at http://localhost:4242/surf/execute

await devui.stop(); // Graceful shutdown

Express Middleware

Mount alongside your existing Express app:

import express from 'express';

const app = express();
app.use(express.json());
app.use(surf.middleware());
app.use(devui.middleware()); // Mounts at /__surf
app.listen(3000);
// → DevUI at http://localhost:3000/__surf

Options

interface DevUIOptions {
  port?: number;    // Port for standalone server (default: 4242)
  host?: string;    // Host to bind to (default: 'localhost')
  title?: string;   // Override UI title (default: manifest name)
  path?: string;    // Mount path prefix (default: '/__surf')
}

Features

  • Command sidebar — All commands listed with search/filter and namespace grouping
  • Parameter form — Type-aware inputs: text, number, checkbox, select for enums, JSON editor for objects/arrays
  • One-click execution — Execute commands with optional Bearer token auth
  • Request log — Syntax-highlighted JSON request/response with timing
  • Keyboard shortcuts/ to focus search, ⌘Enter to execute, Esc to blur
  • Auth support — Bearer token input in the header for testing authenticated commands
  • Auth badges — Visual indicators for required and optional auth commands
  • Command hints — Tags for idempotent, side-effects, estimated latency
  • Scandinavian design — Clean, minimal UI with Inter font and generous whitespace

API

createDevUI(surf: SurfInstance, options?: DevUIOptions): DevUI

interface DevUI {
  start(): Promise<{ url: string }>;     // Start standalone server
  middleware(): (req, res) => void;       // Express-compatible middleware
  stop(): Promise<void>;                  // Stop standalone server
}

Exports

import { createDevUI } from '@surfjs/devui';
import type { DevUI, DevUIOptions } from '@surfjs/devui';

License

MIT