Yusuke Wada

Results 1706 comments of Yusuke Wada

@fro-profesional Mixing `esm.sh` and `deno.land` will result in a type error because each refers to a different `hono`. This is unavoidable due to the limitations of TypeScript.

Hi @hond-hexagon Thanks for raising the issue. @sor4chi or @watany-dev Could you see this issue?

This has been closed by #2529 . Thanks!

@sor4chi Do you know how to handle user's cancellation. If you run the `c.stream()` or `c.streamText()` on Bun like the following, it will not be stopped. ```ts app.get('/stream', (c) =>...

@HeyITGuyFixIt What do you mean `client disconnect or abort events?` ? For example, it might not be enabled to handle closing the browser's tab. Or you use some JavaScript on...

@HeyITGuyFixIt How can I reproduce "disconnect"?

@HeyITGuyFixIt Thanks, I can reproduce it. However, I'm not certain if it's possible to detect an event like closing the browser. @sor4chi, what are your thoughts on this?

@HeyITGuyFixIt I'm not sure if the `abort event` can handle browser closing. I might try implementing a Node.js application that uses the `abort` event to see how it handles a...

I've created an example of a Node.js HTTP server that handles user disconnections. If you close the browser tab, the server stops. We should implement a similar feature in Hono....