Taku Amano

Results 239 comments of Taku Amano

Hi @vinay-khatri. From your report, it seems that Origin headers are not being added to requests from Android and iOS apps. If it is difficult to add the Origin header,...

Hi @vinay-khatri. Thank you for your response. By the way, is the following code actually working? I think you need something like `multipart/form-data; boundary=a-boundary` for ‘multipart/form-data’. (I think the code...

Hi @Blankeos, Thank you for your report. When I ran the application on my computer using your code snippet, only the 2nd one was executed as expected, so I could...

Hi @yusukebe Would you please review this?

Hi @exoego. Thank you for creating the pull request. `jsxAttr` is a function used when Deno's `“jsx”: “precompile”` is used, and unit tests are run as follows. https://github.com/usualoma/hono/blob/ebf9ea769bb638f4a12d553ec3ead3f3204a04e3/runtime-tests/deno-jsx/jsx.test.tsx#L114-L166 It would...

Hi @NfNitLoop, thanks for the report. Since `/:remaining{.*}` has been supported since v4.8.12, it should become a `regex route` in supported versions and a `root route` in unsupported versions. Additionally,...

Hi @NfNitLoop, thanks for the additional confirmation. I apologize for the confusion caused by the behavior changing between versions. That is the expected result.

Hi @NamesMT, thank you for your comment. While the response data will undoubtedly be larger than necessary, it is not an invalid response, so I don't believe it will cause...

Hi @marsbird, thank you for the very helpful link and comments! I see. If deduping by name is preferred in the specification, doing it at the Hono layer is one...

I don't think this is a `@hono/node-server` issue. I got the same error when I ran the following code with bun. ```ts import { Hono } from 'hono' const app...