Beignet is experimental alpha software. The 0.0.x package line is for early
evaluation, and APIs may change between releases while the framework settles.
Development-time event timeline for Beignet apps. It records HTTP requests, errors, use case runs, domain events, jobs, outbox delivery, schedules, and provider activity in a bounded in-memory buffer, then serves a live dashboard from your app.
The event provider is enabled outside production by default and returns a no-op port in production unless you explicitly enable it. HTTP routes auto-enable only in development.
createDevtoolsProvider(...) returns the stable DevtoolsProvider type.
DevtoolsConfig describes its validated config; the Zod schema remains an
internal implementation detail.
bun add @beignet/devtools @beignet/core
Register the provider:
import { createDevtoolsProvider } from "@beignet/devtools";
import { createNextServer, createNextServerLoader } from "@beignet/next";
export const getServer = createNextServerLoader(() =>
createNextServer({
ports,
providers: [createDevtoolsProvider(), ...providers],
context: ({ ports, requestId, trace }) => ({
requestId,
...trace,
ports,
}),
}),
);
The provider is the only devtools wiring the server needs. Request and error
events are recorded by the server's built-in instrumentation, which resolves
the provider instrumentation port from final ports (ports.instrumentation,
then ports.devtools). Configure headers, ignored paths, redaction, and
capture decisions with the instrumentation option on createServer(...) /
createNextServer(...).
Registering the provider is optional. If @beignet/devtools is installed but
createDevtoolsProvider() is not registered, the server runs without devtools
and beignet doctor reports an informational hint that does not fail
doctor --strict.
Add a catch-all route:
// app/api/devtools/[[...path]]/route.ts
import { createDevtoolsRoute } from "@beignet/devtools";
import { auth } from "@/lib/auth";
import { getServer } from "@/server";
export const { GET, POST } = createDevtoolsRoute(
async () => (await getServer()).ports.devtools,
{
basePath: "/api/devtools",
},
);
Open /api/devtools.
The dashboard connects to the event stream with Server-Sent Events and falls
back to polling when EventSource is unavailable. A sidebar groups views by
section — Overview, HTTP, Application, Infrastructure, and Operations — with
live event-count badges per view, plus dynamic views for enabled custom
watchers. On narrow screens, the sidebar collapses to an icon rail so the
active view keeps usable space. The header shows clickable stats (events,
requests, errors, use cases), live connection status, Pause/Resume, and Clear.
Pausing buffers incoming events and reveals them on resume.
The dashboard follows the system color scheme and includes a manual
light/dark/system toggle persisted in localStorage. The theme matches the
shadcn look of generated Beignet starter apps.
Request rows expand into an end-to-end lifecycle view for events that share
the same traceId or requestId. The detail renders a lifecycle waterfall:
correlated spans drawn as relative timing bars (durations are measured at
completion), alongside overview facts such as route match, contract name,
request ID, trace ID, method, path, status, duration, and response ownership,
a redaction note, correlated activity grouped by category, and the raw JSON.
Press / to focus search, which matches event summaries, paths, messages,
names, watchers, IDs, and details. Method, status, and watcher filters narrow
noisy timelines. Timeline rows lead with the human-readable summary, and IDs
truncate to copy-on-click chips. The JSON detail viewer renders syntax
highlighting, collapsible nodes, and a copy button.
The errors view groups failures by owner: route, framework, provider, job, schedule, outbox, client-side, devtools, or unknown. Each row shows the message, owner, related route/status, request ID, trace ID, and nearby correlated events so you can see whether a failure belongs to application code, the framework boundary, provider work, or background execution.
Focus panels render subsystem metrics, row summaries, and drill-down fields for each Beignet workflow primitive. Database shows query counts, failures, inferred table names, redaction status, provider name, port, parameter count, and request/trace IDs when the runtime can preserve active request context. Outbox shows delivered/retry/dead-letter counts, message name/kind, attempts, retry timing, and related request/trace context. Jobs and schedules show lifecycle status, provider, retry/error details, cron metadata, and request context. Cache, storage, uploads, mail, payments, entitlements, notifications, auth, audit, policies, and rate limits show domain-specific metrics such as hits/misses, missing objects, file counts, recipients, checkout sessions, verified webhooks, product access decisions, channels, session state, durable audit actors/resources, policy decisions, and allowed versus blocked checks.
Use the request lifecycle view first when debugging a route. It shows whether the response was route-owned or framework-owned, which use cases ran, which correlated provider events were recorded, which jobs/outbox/schedule/domain events were triggered, and whether stored metadata was redacted.
You can assert this graph in your own integration tests: drive real HTTP write and error requests, read the devtools events endpoint, and verify that request rows, use-case spans, durable audit-port side effects, and route-owned errors stay correlated by request metadata. Provider queries and durable outbox writes appear in the same timeline.
The default buffer is in memory. Enable local persistence when you want the timeline to survive dev server restarts:
import {
createDevtoolsProvider,
createFileDevtoolsStore,
} from "@beignet/devtools";
createDevtoolsProvider({
store: createFileDevtoolsStore({
filePath: ".beignet/devtools/core/events.jsonl",
}),
});
You can also enable the built-in file store through environment variables:
DEVTOOLS_PERSIST=true
DEVTOOLS_PERSIST_PATH=.beignet/devtools/core/events.jsonl
The file store writes JSONL and compacts to the most recent configured events.
POST /api/devtools/clear clears the in-memory buffer and the configured store.
Devtools is OpenTelemetry-compatible without depending on the OpenTelemetry SDK.
The trace primitives live in @beignet/core/tracing: the server reads incoming
W3C traceparent headers, creates a local span when one is missing, exposes
the current traceparent response header, and adds trace fields to captured
events.
All captured events can include:
traceId: W3C trace ID for distributed correlationspanId: span ID for the operation represented by the eventparentSpanId: parent span ID when the event is nestedtraceparent: W3C header value for the current spanSpread the trace context argument into your app context so use case
instrumentation can attach nested spans to the request trace.
Devtools is organized around watchers. A watcher owns one category of capture and records typed events into the shared timeline.
Built-in watchers:
requests records HTTP request timing and contract route activity.errors records unhandled errors, use case failures, and devtools failures.useCases records application command and query execution.eventBus records domain event publishing.jobs records background job lifecycle events.outbox records durable outbox delivery, retries, and dead letters.schedules records schedule execution.providers records provider setup, start, and stop activity.db records database diagnostics from first-party providers.cache records cache diagnostics from first-party providers.flags records feature flag evaluations, explicit exposures, and tracking
events from first-party providers.storage records storage diagnostics from first-party providers.uploads records upload preparation, signing, and completion.mail records mail diagnostics from first-party providers.payments records checkout, portal, refund, and webhook diagnostics from
payment providers.entitlements records product access decisions from billing or plan state.notifications records notification intent and channel delivery.auth records auth diagnostics from first-party providers.audit records sanitized durable audit activity emitted by application code.policies records application authorization policy decisions.rateLimit records rate limit diagnostics from first-party providers.custom records application and integration-specific diagnostic events.Configure watchers through the provider:
createDevtoolsProvider({
watchers: {
requests: true,
useCases: true,
eventBus: false,
jobs: false,
outbox: true,
schedules: true,
db: true,
payments: true,
},
});
Disabled watchers do not store matching events. The installed watcher metadata
is available through ctx.ports.devtools.getWatchers() and the dashboard API.
Custom integrations can also register watcher metadata for their own event
types. Custom watcher views appear in the dashboard sidebar when they own
custom events:
createDevtoolsProvider({
watchers: {
search: {
label: "Search",
description: "Search query and indexing diagnostics.",
eventTypes: ["custom"],
},
},
});
Then record events with watcher: "search" so the custom watcher controls
whether they are stored.
createUseCase(...) from @beignet/core/application instruments every run by
default — no devtools-specific wiring is needed:
import { createUseCase } from "@beignet/core/application";
export const useCase = createUseCase<AppContext>();
Each run resolves the instrumentation port from ctx.ports
(ports.instrumentation, then ports.devtools) and reads ctx.requestId and
trace context fields. Use case start, end, and error phases share the
same span. Pass instrumentation: false to opt out.
First-party and app-level providers should use
createProviderInstrumentation() from @beignet/core/providers instead of
depending on devtools directly. The helper accepts either a ports object or an
instrumentation port, records through record(), and adds provider metadata to
custom events. @beignet/devtools implements that instrumentation port
when createDevtoolsProvider() is registered.
When provider instrumentation records an event during an active request, the
runtime preserves async request context, and the event does not already include
correlation fields, devtools adds the active requestId, traceId, and
traceparent. This keeps provider work correlated with the route, hook, and
use-case timeline without making providers depend on app-specific context
types.
import {
createProvider,
createProviderInstrumentation,
} from "@beignet/core/providers";
export const searchProvider = createProvider({
name: "search",
setup({ ports }) {
const instrumentation = createProviderInstrumentation(ports, {
providerName: "search",
watcher: "custom",
});
return {
ports: {
search: {
async query(text: string) {
const results = await runSearch(text);
instrumentation.custom({
name: "search.query",
label: "Search query",
summary: `${results.length} results`,
details: { resultCount: results.length },
});
return results;
},
},
},
};
},
});
Use a built-in watcher such as db, cache, storage, mail, payments,
flags, entitlements, auth, audit, policies, rateLimit, or schedules when
the provider belongs to one of those categories. Use custom or a custom
watcher name for application-specific integrations.
Durable audit logs should still be written through your app's AuditLogPort.
Use createInstrumentedAuditLog() from @beignet/core/ports when you also
want sanitized audit activity in the local devtools timeline:
import { createInstrumentedAuditLog } from "@beignet/core/ports";
const audit = createInstrumentedAuditLog({
audit: durableAudit,
instrumentation: ports,
});
The wrapper records the durable audit entry first, then emits a custom event
owned by the audit watcher into the resolved instrumentation port. Devtools
remains a local diagnostic view; it is not the durable audit store.
When an audit port is transaction-scoped, emit the devtools mirror only after the transaction commits. Keeping the transaction-scoped audit port durable-only is preferable to showing a local audit event for work that later rolls back.
Use record() for application-specific events. It fills id and timestamp.
ctx.ports.devtools.record({
type: "custom",
watcher: "search",
name: "search.query",
label: "Search query",
summary: "24 results in 18ms",
details: {
query,
resultCount: 24,
durationMs: 18,
},
});
log() is still available when you already have a complete DevtoolsEvent.
GET /api/devtools serves the dashboardGET /api/devtools/core/events returns JSON eventsGET /api/devtools/stream returns a live Server-Sent Events streamPOST /api/devtools/clear clears the in-memory buffer and configured storeEvent list query parameters:
type: request, error, usecase, eventBus, job, schedule, provider, or customrequestId: correlation IDtraceId: W3C trace IDlimit: maximum events to return, default 200DEVTOOLS_ENABLED=true
DEVTOOLS_ENABLED=false
DEVTOOLS_MAX_EVENTS=1000
DEVTOOLS_PERSIST=true
DEVTOOLS_PERSIST_PATH=.beignet/devtools/core/events.jsonl
The default buffer keeps the latest 500 events. Persistence is opt-in and uses
.beignet/devtools/core/events.jsonl by default when enabled without a custom
path.
The provider controls whether events are recorded. The HTTP route controls
whether those events are exposed. Route handlers auto-enable only when
NODE_ENV === "development"; unset, test, preview, staging, and production
environments return 404 unless explicitly enabled with an app-owned
authorize callback:
import { createDevtoolsRoute } from "@beignet/devtools";
import { getServer } from "@/server";
export const { GET, POST } = createDevtoolsRoute(
async () => (await getServer()).ports.devtools,
{
basePath: "/api/devtools",
enabled: process.env.DEVTOOLS_ENABLED === "true",
authorize: async (req: Request) => {
const session = await auth.api.getSession({ headers: req.headers });
return session?.user.id === process.env.DEVTOOLS_ADMIN_USER_ID;
},
},
);
If authorize returns false, devtools responds with 404. If it returns a
Response, that response is used, which lets applications return their own
403 or redirect response.
Use cookie/session authorization for the embedded dashboard. Its same-origin
fetch and EventSource requests include cookies, but browsers cannot attach
an application-defined authorization header to EventSource.
Devtools uses the shared redaction helpers from @beignet/core/ports before
events are stored. Sensitive keys such as authorization,
proxy-authorization, cookie, set-cookie, x-api-key, accessKey, jwt,
session, token, password, secret, and credentials are replaced with
[redacted]. High-confidence credential shapes embedded in strings—including
Bearer and Basic credentials, JWTs, credential-bearing URLs, secret
assignments, and private keys—are scrubbed too, including in error messages and
stacks.
Server request instrumentation records request headers for debugging, but does not record request or response bodies by default. The dashboard marks request lifecycle details when sensitive fields were redacted and warns if secret-shaped metadata keys remain visible in stored events.
You can add a custom redactor through the server's instrumentation option:
const server = await createNextServer({
// ...
instrumentation: {
redact: (event) => ({
...event,
details: scrub(event.details),
}),
},
});
The in-memory store also accepts a redactor for custom setups:
const devtools = createInMemoryDevtools({
redact: (event) => event,
});
interface DevtoolsPort {
log(event: DevtoolsEvent): void;
record(event: DevtoolsEventInput): DevtoolsEvent;
subscribe(listener: DevtoolsListener): () => void;
getEvents(filter?: DevtoolsFilter): DevtoolsEvent[];
getWatchers(): DevtoolsWatcher[];
isWatcherEnabled(name: DevtoolsWatcherName): boolean;
clear(): void | Promise<void>;
}
function createFileDevtoolsStore(options?: {
filePath?: string;
maxEvents?: number;
compactEvery?: number;
}): DevtoolsEventStore;
function createProviderInstrumentation(
target: ProviderInstrumentationTarget,
options: {
providerName: string;
watcher?: string;
redact?: (event: ProviderInstrumentationEventInput) => ProviderInstrumentationEventInput;
},
): ProviderInstrumentation;
type DevtoolsEvent =
| RequestEvent
| ErrorEvent
| UseCaseEvent
| EventBusEvent
| JobEvent
| ScheduleEvent
| ProviderEvent
| CustomDevtoolsEvent;
All events include id, timestamp, optional requestId, optional watcher,
optional traceId, optional spanId, optional parentSpanId, optional
traceparent, and optional redacted details.
Request/error capture is configured on the server, not in this package. See
the instrumentation option on createServer(...) in @beignet/core/server:
type ServerInstrumentationOptions<Ctx> = {
requestIdHeader?: string | false; // default "x-request-id"
traceContextHeader?: string | false; // default "traceparent"
ignorePaths?: readonly string[]; // default ["/api/devtools"]
redact?: (
event: ProviderInstrumentationEventInput,
) => ProviderInstrumentationEventInput;
shouldCapture?: (args: {
req: HttpRequestLike;
ctx?: Ctx;
contract: HttpContractConfig;
response: HttpResponseLike;
error?: unknown;
}) => boolean;
};
createDevtoolsRoute() and handleDevtoolsRequest() accept:
type DevtoolsRequestOptions = {
basePath: string;
enabled?: boolean;
authorize?: (
req: Request,
) => boolean | Response | Promise<boolean | Response>;
};
The HTTP handlers auto-enable only when NODE_ENV === "development". Setting
enabled: true in any other environment still requires authorize; without
it the route remains hidden. The provider also installs a no-op devtools port
in production by default so app code does not need null checks.
Devtools can contain sensitive request, error, and domain data. Keep it on local development routes unless you intentionally add authentication and redaction.
The dashboard UI is a React app in ui/. bun run build:ui compiles it into
one self-contained HTML file and embeds it in the package as a generated module
(src/ui-html.generated.ts, gitignored); bun run build runs build:ui and
then the TypeScript build. From a fresh clone, run bun run build once before
running this package's tests directly — the root bun run test handles that
ordering through turbo.
MIT