bench
bench copied to clipboard
📊 Comparing deno, node and bun HTTP frameworks
Hi, can you add this library? https://github.com/kartikk221/hyper-express https://github.com/kartikk221/hyper-express/blob/master/docs/Benchmarks.md
Will try open a pr tonight
Would you be open to benching our open source deno + oak server at https://github.com/pmprosociety/authcompanion as a friendly one time request? That would mean a lot. I can showcase in...
They're cool and make stuff easier to read without memorizing a bunch of different values from the tables
That way we can speed up benchmark CI by ~3 min
[Danet](https://github.com/Savory/Danet) relies on experimental decorators requiring `experimentalDecorators` to be set to `true` since the release of Deno 1.40, as declared in the release [blog](https://deno.com/blog/v1.40#decorators). This PR adds `deno.json` containing the...
How about adding [h3](https://github.com/unjs/h3) to the bench? ```ts import { createServer } from "node:http"; import { createApp, eventHandler, toNodeListener } from "h3"; const app = createApp(); app.use( "/", eventHandler(() =>...
I have benchmarked Deno a few times on my machine and many benchmarks Deno is 2x slower than Bun Maybe you can try use another benchmarking tool like `wrk` or...
How about adding [Jetpath](https://github.com/Uiedbook/jetpath) to the bench? ```js // in your src/index.routes.js import { JetPath } from "jetpath"; const app = new JetPath({ port: 8080, }); //? listening for requests...