honox asset caching
public, max-age=0, must-revalidate
Is there anyway to control it? I want to cache the css, js and static files foreverStreaming in Honox
I want to create a middleware for hono that requires the previous middleware to have some property.
basePath as route path
@hono/zod-openapi Middleware Issue
Hono and Better-Auth
auth
from api
:...Can not get vercel dev working on localhost with pnpm v10+

RPC can't get types

RPC frontend import
serveStatic() doesn't serve files
app.get('*', serveStatic({ root: '../../front/dist/index.html'}))
route and also return a "404 not found".
Here is the full code ```ts
import { Hono } from 'hono'
import { trpcServer } from '@hono/trpc-server'...Streaming not working with Hono Node Server #4154
RPC
c.redirect('/my-path')
work normally without any extra setup to the hono-client?...Getting cors issues even though i've set it up properly

import.meta.hot is undefined when using hono with bun.
import.meta
there isn't even a hot
property in there....Route types for client
hc
client route types ```const app = new Hono();
const routes = app.get("/api/clock", (c) => {
return c.json({
time: new Date().toLocaleTimeString(),...Trying to send email with Resend and using react, but i got this error

websocket examples for node.js?
How to wait for streamSse to finish?
streamSSE
helper to stream responses, which works great. However it seems that the streamSSE
returns right away, and I have no way to await when the streaming is done. I have a middleware that collects metrics such as http request timings, and the middleware also returns immediately from await next()
instead of waiting the streaming to be done, so the timings are completely wrong.
Is there any way, in the middleware, to wait for the streaming to be done?...Why isn't my dynamically extended Zod schema enforcing types in @hono/zod-openapi?
Recommended way to register routes across files