Yusuke Wada
Yusuke Wada
Hi @rafaell-lycan Thank you for the suggestion and your opinion! > Comparing Hono with Express is unfair, but one of the reasons why we've decided to use it instead of...
Hi @bompi88 By the way, the `qs` is slower than the current Hono's query parsing method: https://github.com/honojs/hono/pull/3674 Do you have any motivation to use the `qs`?
@bompi88 > I'm using a special query "syntax" which is supported by `qs`. I see! But it's not good that the API will be changed depending on the implementation, such...
@bompi88 Sorry, I missed #3667. Let's discuss in it.
@sushichan044 Thanks! Please do it.
@sushichan044 Any progress?
@sushichan044 Okay! Thanks!
@sushichan044 > I have created a repository contains a minimal reproduction code and a detailed explanation of the cause. > https://github.com/sushichan044/hono-header-handling > > The explanation may be complicated, but would...
Maybe this is a super minimal reproduce code: ```ts import { Hono } from 'hono' const app = new Hono() app.use(async (c, next) => { c.header('foo', 'bar', { append: true...
I've never investigated well, but these problems may be fixed with the latest version `4.8.0`. Can you try it?