Interact directly with Cloudflare Worker edge routes and inspect live response payloads.
Run endpoints locally via the Vite-powered edge dev server:
pnpm run devReturns health status, V8 isolate environment details, and edge node region.
const response = await fetch("https://your-app.workers.dev/api/hello?region=LHR", {
method: "GET",
headers: { "Accept": "application/json" }
});
const data = await response.json();
console.log(data);