Taku Amano
Taku Amano
Hi @jpdutoit Thanks for creating the PR! Your point about "etag" is correct, and the current hono "middleware/etag" behavior is incorrect. I also believe that this PR will fix the...
Hi @jpdutoit Can this pull request be updated? As you say, incremental hashing would be best. However, `crypto.subtle` does not support incremental hashing, and even if we implemented it ourselves...
Hi @Mabi19 If you want to return results asynchronously while using `Suspense` together, you can write the following. ```diff @@ -5,7 +5,8 @@ import { Hono } from "jsr:@hono/[email protected]"; import...
Hi @Mabi19 Thanks for your comment. I agree that solving this problem without the internal low-level API would be nice. There is no high-level API for this problem because we...
@Mabi19 Sorry, the output result is still the same, but what you should have done in your app was the same as the following line, so here we prefer to...
> good or not to wait for an asynchronous component once Yes, the subtlety of the use case is that if we are “wait in await and return the streaming...
Hi, @akku1139, thanks for creating the issue. Just so you know, a pull request tried the same thing, so please refer to the discussion there as well. https://github.com/honojs/hono/pull/1796
Hi @sharma-shray, thanks for the suggestion. It may seem like a change that is obvious to you and doesn't need to be explained, but from the perspective of maintenance, it...
I also think it would be good if the result here was the same as with the express. ```bash $ curl 'localhost:3000?foo=%E3%81%82' foo: あ $ curl 'localhost:3000?foo=%E3%81%8' foo: %E3%81%8 ```...
Hi @yusukebe. I'm sorry for not getting back to you sooner. Yes, I also think it would be preferable to make it behave the same as Express. I believe the...