|
|
|
|
|
by IntelliAvatar
173 days ago
|
|
Nice project. One thing Cloudflare Workers gets right is strong execution isolation.
When self-hosting, what’s the failure model if user code misbehaves?
Is there any runtime-level guardrail or tracing for side-effects? Asking because execution is usually where things go sideways. |
|
What's next: execution recording. Every invocation captures a trace: request, binding calls, timing. Replay locally or hand it to an AI debugger. No more "works on my machine".
I think the CLI will look like:
# Replay a recorded execution:
openworkers replay --execution-id abc123
# Replay with updated code, compare behavior:
openworkers replay --execution-id abc123 --worker ./dist/my-fix.js
Production bug -> replay -> AI fix -> verified -> deployed. That's what I have in mind.