node-server
node-server copied to clipboard
Node.js Server for Hono
Hi, How do you compare performance with other node.js frameworks? Which tool or command do you use for benchmarking? I did something like https://github.com/OnurGvnc/hono-node-server/tree/dev/benchmarks ```sh { connections: 50, duration: 10...
Hi there, Does hono support http2?
Disposition: 1. There is a Hono server, with a POST endpoint replying with Server-Sent Events 2. The response is consumed through `fetch().response.body.getReader()` Reader 3. Either (a) the reader cancels via...
Unable to use hono in nextjs app dir with nodejs runtime Example Code ```ts // app/api/[[...route]]/route.ts import { Hono } from 'hono' import { handle } from '@hono/node-server/vercel' const app...
Hard to say if this is a rollup issue or if this is a valid concern but the fix would be easy to implement. When transpiling into esm. There is...
Seeing this error suddenly but no idea where it's coming from, hard for me to replicate as it's only in production on a decent sized stack, I've upgraded to latest...
I have an endpoint for accepting huge files, so instead of loading them at once into memory, I choose to consume `incoming` as stream and process it with `busboy`. The...
Normally in express we can use req.pipe(busboy) with this we can create a pipeline between browser, our server and a service like S3 where files don't have to upload first...
Could you add support for _absolute path_ for the root of the serveStatic? In my use-case [designix-uis](https://www.npmjs.com/package/designix-uis), an absolute path to the folder containing the static files is required as...
Clients can make requests with an [`If-Modified-Since`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/If-Modified-Since) header to indicate that they only want a data-ful response (200) if the file has changed since the date value in that header....