Add workerdDebugPort binding for dynamic worker access#5652
Merged
Conversation
kentonv
reviewed
Dec 6, 2025
3a47fed to
3ddde6d
Compare
Collaborator
Author
|
@kentonv This PR should be ready for review now, no rush though. |
penalosa
reviewed
Dec 7, 2025
95aadda to
0e897d7
Compare
kentonv
reviewed
Dec 8, 2025
kentonv
approved these changes
Dec 8, 2025
jasnell
reviewed
Dec 8, 2025
CodSpeed Performance ReportMerging #5652 will improve performances by 10.18%Comparing Summary
Benchmarks breakdown
Footnotes
|
This binding allows a worker to dynamically connect to another workerd instance's debug port and access worker entrypoints via RPC, without requiring static configuration. The binding provides two methods: - getEntrypoint(service, entrypoint?, props?): Access stateless entrypoints - getActor(service, entrypoint, actorId): Access Durable Object instances This is a workerd-only API intended for local development and testing. Written in conjunction with Claude, Sonnet was unable to write this in a way that I liked but opus was actually very very close!
Change the workerdDebugPort binding API from static address configuration
to a dynamic connect() method. Instead of configuring the remote address
in the config file, the binding now provides a connect(address) method
that returns a WorkerdDebugPortClient.
New API:
const client = await env.DEBUG_PORT.connect("localhost:1234");
const fetcher = await client.getEntrypoint("service", "entrypoint", props);
const actor = await client.getActor("service", "class", actorId);
00a5b4c to
bd8bec4
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This binding allows a worker to dynamically connect to another workerd instance's debug port and access worker entrypoints via RPC, without requiring static configuration.
The binding provides two methods:
This is a workerd-only API intended for local development and testing.
Written in conjunction with Claude, Sonnet was unable to write this in a way that I liked but opus was actually very very close!