How to change to FETCH client of Hono to Ky.js or Axios
i like ky.js i wanted to make rpc use ky.js other than normal fetch method im using it with sveltekit
why I am asking this because i start to get annoyed for await request.json() pattern and error handling
there some other cool packages like Effect that makes fetching way ezy and handling its error without try catch so how do i do that?
11 Replies
have you tried this?
ya but it seems doesn't change anything
still the same
i expect it to look like this
ah, gotcha
not sure how to get it working
i don't think you can easily
ky
accepts this call signature
which is what the hono client is using: https://github.com/honojs/hono/blob/035c2d72c0769442309978501fadcf40b6f56436/src/client/client.ts#L112C27-L112C32can u explain what u are trying to do.
i sort of misunderstood your question, but the short answer is that you'll need to write your own function to handle responses
wrench looks cool
but how does that work with hono
Are you suggesting that I need to build it myself, or is there no way I can use an existing client?
it doesn't work w hono, sorry
sadge
the way the existing client is typed, the response is always going to be
Response
, so you'll have to unpack it yourself
you could do something like this
but i haven't actually gotten the types to work
here we go
i'm sure you can improve on it for your use-case