What are the advantages of using Cloudflare's Fetch vs Node's Fetch?
I want to learn more about what the exact use cases and benefits are for calling fetch on a service binding vs using Node's Fetch directly as well as if I am doing it correctly.
Here is some sample code:
// fuseApi = env.SOME_API ... a service binding from wrangler.jsonc + generated worker types
Is the purpose of this fetch wrapper that some internal magic overrides the fake url and uses internal DNS resolvers for worker to worker communication? Are there other benefits regarding logs, performance, billing, etc?
Is my sample code the proper and expected way to do worker to worker calls, or is there a better way?