Yusuke Wada
Yusuke Wada
And "WASM Router" would also be interesting, although it may take longer to load in the initial stage.
This seems to be closed. Thanks.
Hi @dodas, Currently, no. I understand your desire for this feature, but I believe adding an additional API `app.routes()` is not a so good idea. The Hono core should be...
Yeah, you can do it but there are some points to consider. One of the points is how to map the object and path. You might write it as follows,...
Yes. We can consider to support it.
Hi @ShravanSunder Honestly, I don't want to add more features to `c.json()`, even though the changes might not be big. Instead, you can use `c.render()` and `c.setRenderer()`: https://hono.dev/api/context#render-setrenderer
@ShravanSunder Yes. You can write like the following though it will be a little bit verbose. ```ts import { Hono } from 'hono' const app = new Hono() declare module...
Ah, you want to use `jsonT()`?
There might be someone using `superjson` for RPC, but I can't recall it now. Hmm.
I’ve fixed a port conflict issue with the PR: https://github.com/the-benchmarker/web-frameworks/pull/6763 . But it only prevents errors and does not improve performance. Other Node.js web frameworks such as Fastify are clustered...