Zod validator not working
c.req.param() not work when using middleware combine
How to perform an async operation in Web Socket's onMessage?
Hono websocket with bun typescript issue
Hono RPC TypeScript error
How to prevent Server Error if no req body?
are there any way to check whether route exists in the router or not?
@hono/node-ws
upgrade every websocket connection even if route isn't exists. i want to reject those connections. are there any reliable way to check whether route exists in router or not? even if onError
or onNotFound
handler has been set up to return success response.
my current solution to reject invalid websocket connection is to set up catch all route, added it as the last handler and in onOpen
callback, close those unwanted connection. this works fine, but it would be better if it reject the connection from beginning instead of upgrade it and then close it later....AppRouteHandler
Next.js 15.0.0 "FetchEventLike" type error
pnpm dev
, but when I run pnpm build
, I encounter a type error (screenshot attached).
```...Append Authorization access token to RPC client in asynchronous way (amplify auth/cognito)
Infer client openAPI
Envs not extendable with `createFactory`
factory.ts
```ts
export type HonoEnv = {...Can app.notFound be customized for each Hono instance?
app.notFound()
function is applied globally rather than per Hono instance.
For example:
```
import { Hono } from 'hono';
import { serve } from '@hono/node-server';...Context is not finalized
``
<-- GET /
Error: Context is not finalized. Did you forget to return a Response object or
await next()`?
at file:///workspace/react-router/node_modules/.pnpm/[email protected]/node_modules/hono/dist/hono-base.js:202:17
at getRequestListener.overrideGlobalObjects (file:///workspace/react-router/node_modules/.pnpm/@[email protected][email protected]/node_modules/@hono/vite-dev-server/dist/dev-server.js:78:32)...Git Autodeploy on Cloudflare
Is there any way to mock cookies using testing helpers?
Is there a way to get bindings outside the `c` Context of an inbound Request in Cloudflare Workers?
Multipath route parameters in Hono
functions/[[app]]/[hash].zip.ts
// e.g. /my-app/nested/path/12345.zip
// -> app: ["my-app", "nested", "path"]
...Vite plugin does not compile the commonjs module
npx wrangler pages dev
though. Any idea, agains which repo, should I post this issue on Github...Pass context to exception handler