Skip to main content

Getting started with Flow

Installation

npm install @flethy/flow

Usage

import { FlowEngine, FlowNode } from "@flethy/flow";

const flow: FlowNode[] = [
{
id: "webhooksite",
kind: "webhooksite.core.get",
"param:uuid": "==>env==>WEBHOOKSITE_UUID",
"header:x-test-header": "flethy",
},
];

const engine = new FlowEngine({
flow,
input: {}, // input to the flow
env: {
env: {
WEBHOOKSITE_UUID: "uuid...",
},
secrets: {},
},
});

async function main() {
await engine.start();
}

main();