event.pathParameters not populated on AWS Lambda event object
Trace when body is consumed
Creating custom webhooks
How to keep SSE alive with PSQL?
Recommendation on libraries for relatively small project
server static file + caching
doc endpoint returns 500 with no errors in logs
ts-to-zod
to convert some of my types to zod definitions.
I have the following code:
```
const app = new OpenAPIHono<{ Bindings: Bindings }>();
app.use("*", cors());...Bun + Hono doesn't work for me.
How to work with node:cluster in Bun?
server.js
```js...how to use with hono WorkerEntrypoint
Email Templates
Argument type string is not assignable to parameter type keyof E["Variables"]
Cloudflare KV not inserting values
Knex + Hono + Bun Connection Errors
Middleware errors are not being returned in response type
Hono SSE Stream Closing Unexpectedly After 10 Seconds
streamSSE
, the SSE connection closes after ~10 seconds, regardless of client (curl/browser). A minimal Node.js SSE server works fine.
Environment: Debian, localhost...Combine SSR and Client Components without HonoX
How do I serve hono on https
Enforcing strict types for Hono's c.json() responses?
c.json()
responses at a top level (hono.Handler<..>
)?
Currently, I can define expected response types like this:
```ts
type MyResponse = {someType: string};...Sharing the app type from my hono api to my client in a monorepo