Taku Amano

Results 239 comments of Taku Amano

Hi @ianzone Are you using [@hono/node-server](https://github.com/honojs/node-server)? If so, you can retrieve Http2ServerRequest and Http2ServerResponse using the methods mentioned below. https://github.com/honojs/node-server?tab=readme-ov-file#accessing-nodejs-api

Hi @Plopix. Thank you for the report. I will investigate.

After thinking about it for a while, I think it would be better to catch it by `‘uncaughtException’` as follows. ``` process.on('uncaughtException', (err) => { console.error('uncaughtException:', err); }); ``` ###...

Hi @oladayo21, Thank you! @yusukebe At first, I thought throwing 400 exceptions would be appropriate, but if we're conscious of web standards, your second option might be good. This is...

@yusukebe Thanks for your reply. Yes, I agree with your point. Indeed, path parameters are a matter of application semantics. (They are also related to web standards, but they don't...

The current ‘hono/jsx/dom’ is small enough that I see no need to merge this PR, but if this becomes an important point of comparison with other frameworks, I would consider...

@yusukebe Thank you! I see. This middleware creates 'composite middleware' in the same way as 'composite function', so I think `composite-middleware` might be possible if the name is long enough....

Updated af3e7c5 My work is completed. ### Dependency on TrieRouter There is no functional problem, but I am a little concerned about whether it is acceptable to have a dependency...