Yusuke Wada
Yusuke Wada
@janat08 I can't understand where the error occurs. Could you provide a minimal project to reproduce it again?
@janat08 Thanks! Try to use this code: ```ts import { Hono } from 'hono' import { jsxRenderer } from 'hono/jsx-renderer' import { Layout } from './layoutBeercss' const app = new...
Hi @yknevenky Hmm. If the error only occurs on Bun, then it is a Bun problem. Hono supports any runtime but does not want to change behavior depending on the...
@NicoPlyley Thanks a lot!
Hi @davbauer As @NamesMT said, the `hc` returns a `Response` object compatible with `fetch` so you can write the code with `response.body.getReader()` written in [the document](https://javascript.info/fetch-progress). We designed `hc` as...
@watany-dev Thank you for the PR. I like this! But we have to discuss some points. One is that I've left a comment. ### Is `parseDuration` necessary? Honestly, I don't...
Hey @usualoma, I want to know your thoughts on this PR. I think it's a good idea!
@watany-dev > Thank you. I think I have mostly rewritten it. Here is the revised spec document. Awesome! I like it. But I have a problem with the current code....
Thanks @watany-dev By the way. If I don't set the second arg like the following, it works well. ```ts const app = new Hono() app.get('/', timeout(1000), async (c) => {...
@usualoma > I believe this is Google Chrome's behaviour for 408 You are right! I changed the status code `408` to `504`, and it works as expected! @watany-dev Sorry for...