middleware
middleware copied to clipboard
monorepo for Hono third-party middleware/helpers/wrappers
All my routes are broken because of this change #522. Are any changes necessary? hono : `4.3.7` zod : `3.23.8` zod-openapi :` 0.12.1` (working good `0.11.1`) ```ts Argument of type...
Hello, First of all, thank you for developing this exceptional library, it's a pleasure to work with! However, I'm having a problem integrating `hono/client`, perhaps I'm missing something? With `new...
I've set up Sentry using Hono middleware and errors have no source maps. Is this a bug or is this lack of support due the environment? Runtime: Cloudflare Workers, deployed...
Hello, if I place my handler file in a different file from the route file (I have a Service / Controller architecture), the RPC mode no longer works for auto-completion...
I am pretty new to hono and oauth. I am using this straight forward googleauth implementation ```typescript import { Hono } from 'hono' import { googleAuth } from '@hono/oauth-providers/google'; const...
Hello there! I recently began experimenting with `@hono/zod-validator`. Unfortunately, I encountered an error message stating `Malformed JSON in request body` in request body. I was wondering if anyone has come...
Following along the route groups documentation with openapi and the app is functional, but the openapi docs are empty. If I move the customer route into the main app file...
## Summary `OpenAPIHono#openapi` does not take into account a custom `basePath`. The `path` provided to `openAPIRegistry.registerPath` is incorrect when the app instance has a custom `basePath` defined. ### Basic Reproduction...
I am currently implementing authentication in my application using the Bearer Auth Middleware. I'm interested in accessing additional information about the user associated with the token. Does this functionality only...
I'am developing a simple NextJS app with hono & auth.js. My Question is 1) How to make a valid hook function to get the auth session normally in server components....