Combine JWT middleware with other middleware
/middleware/jwt.ts
:
```typescript
import { Context, Next } from 'hono';
import { jwt } from 'hono/jwt';
...Proper error logging and tracing?
What data should be sent from the client to use clerk middleware?
Websocket with Bun
Custom jwt middleware
Sentry middleware incomplete report
how i connect my hono application with supabase project
Using hono.js rpc on my expo router project

How can I format response in Hono
Seeking Help with Prisma Accelerate and Hono Setup in Turborepo

What is the correct project structure for RPC?
React Native
, and I want to use Hono.js
for the backend, is this project structure correct to use RPC
?
[project name folder]
├── react native folder
├── honojs folder...how to stop request that being processing by hono server from client?
abort
method.
hono v4.3.4
[1] https://hono.dev/guides/rpc#init-option...
Difficulty using OpenAPI registry parameters with createRoute
OpenAI Streaming doesn't work
Error: Missing Clerk Secret key
App breaks in RPC mode, works normally
AppType
as mentioned in the docs. I start getting this error. If I do not export the AppType
and do the normal export default app;
, app works fine here is my index.ts
```
import { Context, Hono } from 'hono'
import { secureHeaders } from 'hono/secure-headers'...
Websockets

Any way to modify the request path in middleware?
Handling promises resolvers with an in-memory `Map` object
index.ts
file.
The project I'm building requires starting a request from one client and "confirming" the request from another client. This means that client A must reach out to the /hello-request
endpoint, and client B must use /hello-confirm/:helloId
to resolve the request. This also works under the assumption that client B would be sent the helloId
value in a separate step....