mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-13 06:36:26 +03:00
Measure framework and provider latency, enforce fidelity and cleanup gates, and publish reproducible results on the dev-only Live Lab.\n\nAI-assisted: OpenAI Codex.
30 lines
620 B
TypeScript
30 lines
620 B
TypeScript
export const liveFrameworkResults = [
|
|
{
|
|
framework: 'Vite + React',
|
|
runs: 5,
|
|
acceptMedianMs: 1,
|
|
acceptP95Ms: 2.8,
|
|
nextPickupMedianMs: 48,
|
|
nextPickupP95Ms: 50.6,
|
|
status: 'Progressive E2E proven',
|
|
},
|
|
{
|
|
framework: 'SvelteKit',
|
|
runs: 5,
|
|
acceptMedianMs: 2,
|
|
acceptP95Ms: 2,
|
|
nextPickupMedianMs: 315,
|
|
nextPickupP95Ms: 342,
|
|
status: 'Progressive E2E proven',
|
|
},
|
|
{
|
|
framework: 'Nuxt 4 + Vue 3',
|
|
runs: 1,
|
|
acceptMedianMs: 143,
|
|
acceptP95Ms: 143,
|
|
nextPickupMedianMs: 116,
|
|
nextPickupP95Ms: 116,
|
|
status: 'Core + progressive E2E proven',
|
|
},
|
|
];
|