Have you guys ever gotten websockets to work on Hono + `@hono/vite-dev-server` plugin?
import { createBunWebSocket } from 'hono/bun';
https://github.com/honojs/vite-plugins/issues/148
2. On Node, I can serve websockets using ws
and import { serve } from '@hono/node-server'
...status 200 with empty JSON

How to do filepath as a param in an RPC route?
How to use custom fetch method for Hono client?
axios
library and want a similar experience with the Hono client, such as shorter syntax, automatic JSON transformation and interceptors. Some suggest using ky
instead of axios
, but I don't know how to integrate it. The documentation (https://hono.dev/docs/guides/rpc#custom-fetch-method) is unclear to me. Could I get any guidance or example code?Losing type information on Client for AppType
output: { [x: string]: any; result?: any; };
on the client but server is showing correct type. I have strict true on the client lib.
All GET/POST api calls returns Internal server error 500
GET https://platform.procureezy.com/api/workflows 500 (Internal Server Error)
[[...route]] ```app.onError((err, c) => { if (err instanceof HTTPException) {...
TypeError: Response constructor: Invalid response status code 204
@hono/zod-openapi: How to write OpenAPI doc for middleware responses?
Experimenting with custom NextJS Server
unhandledRejection: Error [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client
Here's the code:
```ts...How to set up and use a structured error format?
Error
instance, let's all it MY_API_ERROR_INSTANCE
...Ensuring Type Safety and Handling Optional JWT Fields in Hono Middleware
get with params not working
Can someone explain why types aren't inferred

hono logger with log levels
Serialization of Date?
unit tests with vitest, drizzle and d1
vites.config.ts
```ts
import { defineWorkersConfig } from '@cloudflare/vitest-pool-workers/config'
import path from 'path';...websocket issue

Using Hono through Bun inside a Node/Pnpm Monorepo
pnpm
since many said that using bun
are not stable enough. It's possible to use and deploy Hono on Bun under that context? I want to avoid the hono/node-server
because it has some issues, and the ideal scenario would be able to deploy through Docker this hono instance (using turborepo prune feature)....c.json() does not enforce OpenAPI return type
c.json<ReturnType, 200>()
myself
...Type inference breaks after upgrading hono
4.2.2
to 4.4.3
on both the frontend and backend, the following code broke.
1. I do an rpc fetch like this:
...