Minimal & Fast
Lightweight framework with minimal dependencies. Get started in seconds with minimal boilerplate and blazing fast deployments.
The TypeScript framework that deploys anywhere. Write functions, not infrastructure. Export a function, get an API, Lumo handles the rest with zero configuration.
// 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!,
});
}