Yusuke Wada
Yusuke Wada
Hi @zoubingwu Thank you for creating the issue. This looks like a bug, but it's a known issue that can be resolved because a `Context` in Pages Middleware is not...
Hi @zoubingwu Exactly. Cloudflare Pages provides `data`. Nice suggestion. I'll consider it. Hi @BarryThePenguin If you have any thoughts, please share them.
This is closed by #3332!
Hi @drdreo > It would be amazing to have the choice for honojs in nestjs applications. Not only would it make hono more recognized in the JavaScript world, but also...
@EdamAme-x If you run it on Node.js with `@hono/node-server`, the speed performance is not so different between Hono and Express. Especially if the application handles the request body like using...
@jclark-dot-org In this case, the value of the Content-Type header is all lowercase `application/x-www-form-urlencoded`, which should usually be parsed correctly. So, it's weird. For example, how about trying with the...
No response. I'll remove the `triage` label and add a `not bug` label.
This is related to https://github.com/honojs/hono/issues/2651
@zoubingwu I'm not sure this will solve your problem, but we can write multiple validators like this: ```ts const paramSchema = z.object({ id: z.string() }) const querySchema = z.object({ q:...
Hi @zoubingwu > is there a way to make it to accept empty input too? I can't understand it well. If you don't set validators for the body, such as...