How can I make requests to my RPC WorkerEntrypoint worker.
Feels like a dumb q, but I can't figure out if there's a reasonable way to do this without adding another worker to make the actual calls. It's a lot less convenient than when I have an HTTP worker that I can quickly use my browser after a wrangler dev. Am I missing something? Can I use the default export fetch to proxy over to the WorkerEntrypoint nstead?
1 Reply
Actually it does seem like I can just repurpose the default worker to make the calls directly, and use my regular http pattern to do one-off tests. Hopefully I can get this to work with test files too.