Axeom moves the heavy lifting to the initialization phase. By treating your API as a Blueprint, we achieve perfect End-to-End type safety from server to client without a single build step or generated file.
Write your logic once and deploy it anywhere. Axeom provides a unified, high-performance experience across:
- Bun (Native)
- Deno (Native)
- Node.js (via @axeom/express)
- Cloudflare Workers (Edge)
- Radix Router: Binary-fast routing with O(1) complexity.
- Atomic Plugins: Only install what you use (CORS, Auth, Swagger, etc).
- Binary Handshakes: Agnostic WebSocket and SSE implementations.
import Axeom from "@axeom/framework";
const app = new Axeom()
.get("/", () => "Weightless World.")
.listen(3000, () => {
console.log("Axeom Ignite: http://localhost:3000");
});
export type AppType = typeof app;Architected by Kelly Limo
Licensed under MIT