Sor4chi
Sor4chi
Hi, @janat08 The website has been updated! Thanks!
WIP: https://github.com/sor4chi/hono-do
@jonasb Hi, sorry for the delay in replying due to my busy schedule. Thank you very much for reproducing it. I was able to reproduce this in my environment and...
I am considering putting these changes in with the fix, but I am still looking for a way to deliver the error to Hono's `app.onError`. ```diff diff --git a/src/helper/streaming/stream.ts b/src/helper/streaming/stream.ts...
The `app.onError` is a function to allow the response to be returned on the onError side when an error is thrown in the route handler, but since the ReadableStream is...
That’s a nice idea. Surely, we could do that. But I think we could just try-catch and wrap in the cb of the stream rather than doing that… ```ts app.get('/sse-error',...
Indeed. Then I'll try to implement the policy of making the third argument of stream an error handler.
Hi, @satyavh Is this the code you expect to work correctly? ```ts import { Hono } from "hono"; import { streamSSE } from "hono/streaming"; const app = new Hono(); let...
related: #1903
Hi, @usualoma It is true that when the same selector is specified from multiple components, it is difficult to know which one to choose when they are competing against each...