One Stack.
No Glue.

A clean rewrite of the full stack — API, database, queues, React SSR — for Node, Bun, and Cloudflare. No library glue. One small, consistent surface AI agents generate predictable code against.

Build type-safe HTTP APIs with automatic validation and OpenAPI
 1import { run } from "alepha"; 2import { $action } from "alepha/server"; 3  4class Api { 5  // accessible via HTTP GET /api/greet?name=John 6  greet = $action({ 7    schema: { 8      query: t.object({ name: t.text() }), 9      response: t.object({ greeting: t.string() }),10    },11    handler: async ({ query }) => {12      return {13        greeting: `Hello, ${query.name}!`,14      };15    },16  });17}18 19run(Api);

Batteries Included

Everything you need to build production-ready applications.

Ready to Start?

One package. Everything included.*

>_npx alepha@latest init

Start Building Today

Join developers who ship faster with Alepha.

ready
mainTypeScript
UTF-8home.md