I'm working on a project where we talk to many different instances of the same API that live on different hosts. Currently, it seems like I have to create separate Fetcher for each host, which ends up making our code pretty awkward. I'm not sure the best way to handle this, but I have two ideas.
1) Expose an option to pass in the baseUrl somehow in the fetch
2) Provide an alternative api that doesn't require you to create a Fetcher before calling an endpoint
I'm working on a project where we talk to many different instances of the same API that live on different hosts. Currently, it seems like I have to create separate
Fetcher
for each host, which ends up making our code pretty awkward. I'm not sure the best way to handle this, but I have two ideas.1) Expose an option to pass in the baseUrl somehow in the fetch 2) Provide an alternative api that doesn't require you to create a
Fetcher
before calling an endpoint