Skip to content

Lumo Framework

The TypeScript framework that deploys anywhere. Write functions, not infrastructure. Export a function, get an API, Lumo handles the rest with zero configuration.

Tamo - The Lumo Framework MascotTamo - The Lumo Framework Mascot

Example

ts
// functions/api/index.ts
import {http} from "@lumo-framework/core";

export async function GET(request: http.Request) {
    return http.response(http.STATUS_OK).json({
        data: 'Hello from Tamo!,
    });
}