Getting started with Flow
Installation
- npm
- yarn
- pnpm
npm install @flethy/flow
yarn add @flethy/flow
pnpm add @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();