0.1.13 • Published 3 years ago
@clausehq/flows-engine v0.1.13
Flow engine
This is a generic flow execution enginee.
The engine is parameterized with a set of transforms and types.
Transforms and types need to have the right structure (npm packages exporting an object with the proper fields).
The engine can be instantiated with:
const engine = require('@clausehq/core-flows');
const registry = {
transforms: [
{ name: <TRANSFORM_NAME>, package: <TRANSFORM_PATH> },
...
],
types: [
{ name: <TYPE_NAME>, package: <TYPE_PATH> },
...
],
};
const myEngine = engine(registry);
The flow engine API allows you to invoke a flow:
const result = myEngine.invoke(flow, context, request);
Where:
flow
is the flow (ALMOST! it still has a few bits pre-hydrated, but very close now)context
is the invokation context (e.g., secrets, previous steps etc)request
is the input of the flow
0.1.13
3 years ago
0.1.11
4 years ago
0.2.0-alpha.7
4 years ago
0.2.0-alpha.6
4 years ago
0.2.0-alpha.2
4 years ago
0.2.0-alpha.1
4 years ago
0.2.0-alpha.5
4 years ago
0.1.10
4 years ago
0.1.2
4 years ago
0.1.8
4 years ago
0.1.7
4 years ago
0.1.9
4 years ago
0.1.4
4 years ago
0.1.3
4 years ago
0.1.6
4 years ago
0.1.5
4 years ago
0.1.1
4 years ago
0.1.0
4 years ago
0.0.6
4 years ago
0.0.5
4 years ago
0.0.4
4 years ago