TypeScript Framework
Made Easy

Stop gluing libraries together. Alepha gives you APIs, databases, queues, React SSR, and more. All type-safe. All works out of the box.

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