Yesterday I published princejs on npm.
- <2 kB
- Zero dependencies
- Native Bun binary
- Built in 3 days on my school laptop
- 500+ downloads in <24 hours
Same laptop. Same test. Same autocannon command:
Express → 8,000 requests in 10s
princejs → 25,000 requests in 10s
To Start
npm i princejs
or
pnpm add princejs
Then
import { Prince } from "princejs";
const app = new Prince();
app.get("/", () => app.json({ message: "Wassup" }));
app.listen(3000);
That’s it. No bloat. No legacy. Just speed.
Repo: https://github.com/MatthewTheCoder1218/princejs
npm: https://npmjs.com/package/princejs
Top comments (0)