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

@webblackbox/cdp-router

v0.2.0

Published

Chrome DevTools Protocol router for managing debugger targets and CDP sessions across tabs, iframes, and workers.

Readme


Chrome DevTools Protocol (CDP) routing layer for WebBlackbox. Manages debugger connections, target tracking, and CDP command execution for the Chrome extension.

Overview

  • CdpRouter — High-level interface for managing CDP sessions and sending commands
  • DefaultCdpRouter — Full implementation with multi-target tracking (tabs, iframes, workers)
  • Transport Layer — Abstraction over Chrome's chrome.debugger API
  • Auto-Attach — Automatic attachment to child targets (iframes, workers, service workers)

Usage

Creating a Router

import { createCdpRouter, createChromeDebuggerTransport } from "@webblackbox/cdp-router";

const transport = createChromeDebuggerTransport();
const router = createCdpRouter(transport);

Attaching to a Tab

// Attach debugger to tab
await router.attach(tabId, "1.3");

// Enable baseline CDP domains (Network, Runtime, Log, Page)
await router.enableBaseline(tabId);

// Enable auto-attach for child targets (iframes, workers)
await router.enableAutoAttach(tabId, {
  autoAttach: true,
  waitForDebuggerOnStart: false,
  flatten: true
});

Sending CDP Commands

// Send CDP command to main target
const result = await router.send<ResponseType>({ tabId }, "Network.getResponseBody", {
  requestId: "12345"
});

// Send CDP command to child target (iframe, worker)
const childResult = await router.send<ResponseType>(
  { tabId, sessionId: "child-session-id" },
  "Runtime.evaluate",
  { expression: "document.title" }
);

Receiving Events

// Listen for CDP events
const unsubscribe = router.onEvent((event) => {
  console.log(event.tabId);
  console.log(event.sessionId); // undefined for main target
  console.log(event.method); // "Network.requestWillBeSent", etc.
  console.log(event.params); // CDP event parameters
});

// Listen for detach events
const unsubDetach = router.onDetach((info) => {
  console.log(info.tabId);
  console.log(info.reason); // "target_closed", etc.
});

Target Management

// Get all attached targets for a tab
const targets = router.getAttachedTargets(tabId);

for (const target of targets) {
  console.log(target.tabId);
  console.log(target.sessionId); // CDP session ID (for child targets)
  console.log(target.targetId); // Target ID
  console.log(target.frameId); // Frame ID
  console.log(target.targetType); // "page", "iframe", "worker", "service_worker"
  console.log(target.url); // Target URL
}

Detaching and Cleanup

// Detach from a specific tab
await router.detach(tabId);

// Clean up all connections
router.dispose();

API Reference

CdpRouter Interface

interface CdpRouter {
  attach(tabId: number, protocolVersion?: string): Promise<void>;
  detach(tabId: number): Promise<void>;
  send<T>(target: Debuggee, method: string, params?: object): Promise<T>;
  enableBaseline(tabId: number, sessionId?: string): Promise<void>;
  enableAutoAttach(tabId: number, options?: AutoAttachOptions, sessionId?: string): Promise<void>;
  getAttachedTargets(tabId: number): RouterAttachedTarget[];
  onEvent(callback: CdpEventHandler): () => void;
  onDetach(callback: CdpDetachHandler): () => void;
  dispose(): void;
}

Types

type DebuggerRoot = { tabId: number };
type DebuggerChild = { tabId: number; sessionId: string };
type Debuggee = DebuggerRoot | DebuggerChild;

type RawCdpEvent = {
  tabId: number;
  sessionId?: string;
  method: string;
  params?: object;
};

type DetachInfo = {
  tabId: number;
  reason: string;
};

type RouterAttachedTarget = {
  tabId: number;
  sessionId?: string;
  targetId?: string;
  frameId?: string;
  targetType?: string;
  url?: string;
};

type AutoAttachOptions = {
  autoAttach: boolean;
  waitForDebuggerOnStart: boolean;
  flatten: boolean;
  filter?: object;
};

Baseline Domains

When enableBaseline() is called, the following CDP domains are enabled:

  • Network.enable — HTTP request/response monitoring
  • Runtime.enable — JavaScript runtime events (exceptions, console)
  • Log.enable — Browser log entries
  • Page.enable — Page lifecycle events (navigation, DOM)

Transport Interface

interface DebuggerTransport {
  attach(debuggee: object, version: string): Promise<void>;
  detach(debuggee: object): Promise<void>;
  sendCommand<T>(debuggee: object, method: string, params?: object): Promise<T>;
  addEventListener(handler: CdpEventHandler): () => void;
  addDetachListener(handler: CdpDetachHandler): () => void;
}

License

MIT