Moose is an open source data engineering framework for Typescript or Python devs & AI agents that need to ship data-intensive products fast
import { Key } from "@514labs/moose-lib"
export interface UserActivity {
id: Key<string>;
userId: string;
activity: string;
timestamp: Date;
}
export interface ParsedActivity {
id: Key<string>;
userId: string;
activity: string;
utcTimestamp: Date;
}
Webserver
Streams
OLAP DB
Orchestrator
OLAP DB
Webserver