Yusuke Wada
Yusuke Wada
@usualoma How do you feel about this API, although it has not been implemented yet? ```ts const mwWithAwait = createMiddleware(async (c, next) => { before() await next() after() }) const...
@usualoma Thanks! > On the other hand, I think it is better to continue to encourage Hono users to write `await next()`. It is simpler and easier to understand than...
> However, with this change, the following code would have the same level of performance. Ah, sorry for the confusion! I meant that using only `await` in middleware is slightly...
Hi @metrue ! This is interesting. The facts that we/me and @usualoma discussed is mostly about running apps on **Bun**. For Bun, `await/async` makes it slower compared to Node.js. On...
@usualoma How do you think about this thing? Now, I'm trying to create a Twitter clone with HonoX. I'm referring to the following repository: https://github.com/Micheal-Earl/mitwi It is built with Fresh,...
However, I think there is an option not to do this, maybe just keep the hono/jsx/dom implementation to a minimum and use React when creating full-stack pages with HonoX or...
`FC` is no longer used for the user. Please use `PropsWithChildren` instead of it. https://hono.dev/guides/jsx#propswithchildren Ref: https://github.com/honojs/hono/issues/2142
@usualoma Coooool! I've tried your repo, it works great!
Hi @usualoma ! I'll merge this into the "next" branch! The next minor version will be released soon.
Hi @eduardvercaemer ! Please give us a minimum reproducible code example so that we can debug easily.