Adds a per-subsystem measurement of reactive.js, made by minifying it repeatedly with one subsystem removed rather than counting source bytes. This corrects the earlier audit on both figures and on the conclusion drawn from them. Component controllers are 23,722 bytes minified / 6,660 gzipped -- 30.6% of transfer, not the "about 18%" previously claimed -- and splitting them out saves 6.6 kB gzipped on a typical page, not "3-4 kB". Measured against the example app, / and /login use none of the ten controllers and /layout uses one, so most pages download and parse the lot for nothing. The larger finding is that the runtime is not where the weight is. One page parses 490,212 decoded bytes across 11 generated client modules while transferring 21,026, and the largest module is 89.8% duplicated lines: the state-restore prologue appears 162 times because client-codegen.ts inlines the sync into every peer alias of every client function. Gzip hides it on the wire, but parse cost follows decoded bytes. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
50 lines
1.7 KiB
TypeScript
50 lines
1.7 KiB
TypeScript
import type { Context } from "@wrnexus/core";
|
|
import { exportSubjectContext, importSubjectContext, type SubjectContext } from "@wrnexus/rpc";
|
|
import type { PubSub } from "./index.ts";
|
|
|
|
const PUBSUB_AUDIENCE = "wrnexus-pubsub";
|
|
|
|
interface SubjectEnvelope<T> {
|
|
payload: T;
|
|
identity?: string;
|
|
}
|
|
|
|
export interface SubjectPubSub {
|
|
publish<T>(ctx: Context, topic: string, message: T): Promise<void>;
|
|
subscribe<T>(
|
|
pattern: string,
|
|
handler: (message: T, topic: string, subject?: SubjectContext) => void | Promise<void>,
|
|
): () => void;
|
|
}
|
|
|
|
/**
|
|
* Authenticated pub/sub envelope. The token uses a fixed, purpose-specific
|
|
* audience; subscribers verify it before exposing the message to a handler.
|
|
*/
|
|
export function subjectPubSub(bus: PubSub): SubjectPubSub {
|
|
return {
|
|
async publish(ctx, topic, message) {
|
|
const identity = await exportSubjectContext(ctx, PUBSUB_AUDIENCE);
|
|
await bus.publish<SubjectEnvelope<typeof message>>(topic, {
|
|
payload: message,
|
|
...(identity ? { identity } : {}),
|
|
});
|
|
},
|
|
subscribe(pattern, handler) {
|
|
return bus.subscribe<SubjectEnvelope<unknown>>(pattern, async (envelope, topic) => {
|
|
if (!envelope || typeof envelope !== "object" || !("payload" in envelope)) return;
|
|
let subject: SubjectContext | undefined;
|
|
if (envelope.identity !== undefined) {
|
|
if (typeof envelope.identity !== "string") return;
|
|
try {
|
|
subject = await importSubjectContext(envelope.identity, PUBSUB_AUDIENCE);
|
|
} catch {
|
|
return; // Never downgrade a malformed claimed identity to anonymous.
|
|
}
|
|
}
|
|
await handler(envelope.payload as never, topic, subject);
|
|
});
|
|
},
|
|
};
|
|
}
|