What problem does it solve?
Debugging frontend performance issues with production data normally requires a database, warehouse, and authentication. This Skill replays a captured HAR file as a mock Lightdash backend so the frontend renders with exact production data, letting you reproduce dashboard issues locally without any infrastructure.
Core Features & Use Cases
- HAR Analysis: Parses the HAR file to extract the page path, origin, project and dashboard UUIDs, and identifies POST endpoints that need body-based request matching.
- Tailored Replay Server: Generates a Node.js/TypeScript server that indexes HAR responses, handles base64 decoding, skips pending query polls, normalizes 304s, and matches POST requests by body fields like chartUuid.
- Local Reproduction: Starts the replay server on port 3001 alongside the Vite frontend dev server and provides the exact URL to open the captured page.
- Use Case: A user reports a slow dashboard in production. Capture a HAR from Chrome DevTools, then replay it locally to profile the frontend rendering with the exact API responses the user experienced.
Quick Start
Replay the attached HAR file as a mock backend so I can reproduce the dashboard performance issue locally.