Yusuke Wada

Results 1706 comments of Yusuke Wada

Hi @tunnckoCore I think this works fine on Cloudflare Workers with a `wrangler dev` command: https://github.com/user-attachments/assets/1cd52010-fcaf-4d71-85ae-a811a5cc7706

I'll close this issue. If you have a problem, feel free to reopen.

Hi @douglasduteil It's not a typo or mistake. It's intended. The `app.route('/sub', sub)` is just adding the sub app's routes to the main app, not passing the not found handler....

Hi @thephluxer Is that a Windows-specific problem? If so, it will be fixed in the future by #3477. I want you to try the branch version of `hono` to confirm...

I know that the challenging aspect is designing the structure with an un-opinionated framework, such as Hono, to build large applications (I faced this when using Golang). I think our...

Hi @k3ntar0 This may be [zod-to-openapi](https://github.com/asteasolutions/zod-to-openapi) issue that is used in `@hono/zod-openapi`. For example, you can use it without `@hono/zod-openapi` and reproduce this issue: ```ts import { extendZodWithOpenApi, OpenAPIRegistry, OpenApiGeneratorV3...

Hi @moret Regarding the third-party middleware hosted in this repository, the author of the middleware handles issues and pull requests. So @dios-david, do you have any idea? It's my thought....

Hi @cesaryuan This is like a bug, but it is a known issue ( sorry for not writing it explicitly). I also think this should be `Record`. But the change...

Hi @t-mart Quick response. I think we can implement it as a middleware like [the ETag Middleware](https://hono.dev/docs/middleware/builtin/etag).

@t-mart > However, with a general request/response _(not a filesystem mapping like serveStatic)_, I'm not sure how the server would (statelessly) know how to set the `Last-Modified` header correctly. Indeed....