Yusuke Wada
Yusuke Wada
Closing this, but we will continue to improve the documentation. Thanks, @ThatOneBro!
Thanks @Manouchehri Or, I think we can also make "swagger-ui" - `@hono/swagger-ui` middleware using `swagger-ui-dist` via CDN: https://swagger.io/docs/open-source-tools/swagger-ui/usage/installation/
Is there anyone make it? cc: @sor4chi
@rafaell-lycan No. I think it should be a middleware independent of `@hono/zod-openapi` like https://github.com/honojs/middleware/pull/168
Swagger UI Middleware is published, but Swagger UI is not Swagger Editor: https://github.com/swagger-api/swagger-editor
Hi, @nicksrandall I think we can do it with this code: ```ts app.get('/api', (c) => { return c.json({ foo: 'bar' }) }) app.get('/', async (c) => { const res =...
I'm not run it yet, but I think this would work with `ENV`: ```ts app.get('/', (c) => { app.request('/api', c.req.raw, c.env) return c.json(0) }) ```
Hi. You can also pass the execution context like the following: ```ts app.request('/api', c.req.raw, c.env, c.executionCtx) ```
@Zerebokep That warning is annoying, but you can ignore it.
Hi @jferrettiboke I can't reproduce it. Please share the minimal project to reproduce it.