0.0.11 • Published 1 year ago

@nouro/flow v0.0.11

Weekly downloads
-
License
-
Repository
-
Last release
1 year 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.0.11

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago