awesome, thank you! If worker B is a web framework (`Hono`) and I usually interact with it by calli

awesome, thank you!

If worker B is a web framework (
Hono
) and I usually interact with it by calling it with
https://worker_b.me.workers.dev/${param}

I bind it as a service in worker A (
env.B
), how do I call it and pass
param
?

const result = await env.B.fetch(param)
const json = await result.json()


Cannot read properties of undefined (reading 'fetch')
Was this page helpful?