Yusuke Wada

Results 1706 comments of Yusuke Wada

@Marplex ahhhhhhh. Sorry. I wanted to say "I think it's **not** necessary!". So, you don't have to create it!

Hi @stukennedy Thanks! That's a good suggestion. I've left the comments. Please check them.

Hi @mfulton26 Great idea! I know some users use Hono inside a service worker in production. So it's not only for magic. I'd like to have it.

Now, we have Service Worker Adapter and the document on our website: https://hono.dev/docs/getting-started/service-worker We can close this issue!

Hi @ryuapp I think the current flow is not bad for DX. Do you mean like this? ![CleanShot 2024-04-29 at 13 11 18@2x](https://github.com/honojs/create-hono/assets/10682/9d016f6c-ed7a-4b30-a700-44dd13e89556)

> I don't like waiting for cloning the template while my selecting. Ahhh, I see. That will be good.

Hi @flexchar Currently, Hono does not provide source maps, which likely means that Sentry Middleware does not support it. Related to https://github.com/honojs/hono/issues/1712

Hi @Jayllyz How about using `z.string()` instead of `{ type: 'string' }`? ```ts import { OpenAPIHono, createRoute, z } from '@hono/zod-openapi' const app = new OpenAPIHono() export const healthCheck =...