Every HTTP and HTTPS request — visible, inspectable, and under your control. Breakpoints. Session replay. HAR import/export. Throttle. Block. System override.
An API call fails. You open Chrome DevTools, find the request, look at the response — it's a 401. But was it a missing header? An expired token? A wrong endpoint? DevTools shows you what happened, but you can't change the request and retry without going back to your code, editing it, recompiling, and refreshing. And that's just the browser side. If the failing call was made server-side — from your backend to a third-party API — Chrome DevTools can't see it at all.
Donk's gateway is a built-in forward proxy that sees every request your dev environment makes — both from the browser and from your backend server. Set a breakpoint on any domain or URL pattern. When a request matches, it pauses mid-flight. You see the full request — headers, body, query parameters. Modify anything. Resume, or drop the request entirely. Set breakpoints on responses too — see what came back before your code processes it.
Video: 40–50 seconds. Setting a breakpoint on Stripe API calls. A payment request pauses. Edit the amount. Resume. See the modified response.