DEV Community

Cover image for I Built the #1 Fastest Bun Framework At 13 Years Old
Little Prince
Little Prince

Posted on

I Built the #1 Fastest Bun Framework At 13 Years Old

PrinceJS just hit 19,200 req/s, beating Hono, Elysia, and
Express
.

2.8 kB gzipped\
576k requests in 30s\
21% faster than Elysia\
106% faster than Express

import { prince } from "princejs";
const app = prince();

app.get("/", () => ({ hello: "PrinceJS" }));

app.listen(3000);
Enter fullscreen mode Exit fullscreen mode

Benchmark Results

  • PrinceJS: 19,200 req/s → 576k\
  • Hono: 16,212 req/s → 486k\
  • Elysia: 15,862 req/s → 476k\
  • Express: 9,325 req/s → 280k

bench marks

Built in Nigeria. Zero deps. Pure speed.

"I didn't beat them. I destroyed the competition."

🔗 Website: https://princejs.vercel.app\
🔗 GitHub: https://github.com/MatthewTheCoder1218/princejs

Top comments (0)