The Backend for Frontend Web Framework
Axeom is the ultra-fast web engine that bridges the gap between runtimes. Built for speed, modularity, and absolute type-safety.
pnpm add @axeom/frameworkimport Axeom, { s } from "@axeom/framework"
import { swagger } from "@axeom/swagger"
const app = new Axeom()
.use(swagger())
.derive(async () => ({
user: { name: "Kelly Limo", role: "architect" } })).get("/", () => ({
status: "weightless" })).post("/projects", ({ body, user }) => ({
id: "proj_123", owner: user.id, ...body }), {body: s.object({
name: s.string().min(3)
}) })app.listen(3001, () => {console.log("Axeom Ignite: http://localhost:3001")
})export type App = typeof app;
Everything you need,
Nothing you don't.
Native on your stack.
First-class support and native adapters for Bun, Node.js (Express), Deno, and Cloudflare Workers.
Validation your way.
Built-in weightless schema, or plug in Zod, Valibot, and TypeBox for enterprise-grade type safety.
Storage Abstraction.
Unified API for file uploads that bridges Local Storage, Amazon S3, and Cloudflare R2 seamlessly.
Event-Driven Core.
Built-in abstractions for WebSockets and Server-Sent Events (SSE) for modern real-time applications.
Documentation First.
Every route is a living document. Instant Scalar UI and complete OpenAPI 3.0 generation out of the box.
Byte-Sized Core.
Engineered for the edge. Total runtime footprint stays under 10kb including core plugins.
Extend the runtime.
Maintain the speed.
Axeom follows a "Zero-Bundle" philosophy. Core stays tiny, while the plugins provide industry-standard features only when you need them.
@axeom/swagger
Auto-generated OpenAPI 3.0 & Scalar UI.
@axeom/auth
Secure JWT identity powered by Jose.
@axeom/rate-limit
Traffic control and brute-force protection.
@axeom/ws
Cross-runtime WebSocket abstractions.
@axeom/upload
Streaming file uploads for S3 & Local.
@axeom/static
Optimized asset delivery for the edge.
Agnostic
Protocols.
The Axeom core follows the winterTC specification, ensuring seamless integration across top-tier engines and frameworks.