0.1.0 • Published 5 months ago

@nouro/flow v0.1.0

Weekly downloads
-
License
-
Repository
-
Last release
5 months ago

Nouro flow package, which allows to execute flows

To execute simple flow:

import { FlowSimple } from "@nouro/flow";

const apiKey = process.env.FLOW_ENV_KEY;

const flow = new FlowSimple(apiKey);

// Returns response
const res = await flow.execute(payload);

for (const chunk of res.body) {
    console.log(chunk);
}

To execute edge flow:

import { FlowEdge } from "@nouro/flow";

const apiKey = process.env.FLOW_ENV_KEY;

const flow = new FlowEdge(apiKey);

// Returns response
const res = await flow.execute(payload);

for (const chunk of res.body) {
    console.log(chunk);
}
0.1.0

5 months ago

0.0.11

2 years ago

0.0.10

2 years ago

0.0.9

2 years ago

0.0.8

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago