@frontal-labs/pipelines
v0.0.1
Published
Frontal Pipelines SDK — declarative data pipelines with substrate orchestration and graph entity awareness
Downloads
30
Maintainers
Readme
@frontal-labs/pipelines
Declarative pipeline SDK for ingest, transform, and execution workflows.
Installation
bun add @frontal-labs/pipelines @frontal-labs/coreUsage
import { FrontalClient } from "@frontal-labs/core";
import { createPipelinesClient } from "@frontal-labs/pipelines";
const client = new FrontalClient({
apiKey: process.env.FRONTAL_API_KEY!,
baseUrl: process.env.FRONTAL_API_URL ?? "https://api.frontal.dev/v1",
});
const pipelines = createPipelinesClient(client);
const page = await pipelines.list({ limit: 10 });
const run = await pipelines.use("ppl_123").trigger({ source: "manual" });Configuration
FRONTAL_API_KEYFRONTAL_PIPELINES_API_URL(optional)FRONTAL_API_URL(fallback)
