Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

fibo/dflow

Repository files navigation

Dflow

A minimal Dataflow programming engine

Installation

Using npm

With npm do

npm install dflow

Using a CDN

Try this in your HTML page

<script type="importmap">
 { "imports": { "dflow": "https://unpkg.com/dflow" } }
</script>
<script type="module">
 import { Dflow } from "dflow";
 const helloWorld = {
 kind: "helloWorld",
 run() {
 console.log("Hello, World!");
 }
 };
 // Create a Dflow instance passing the node defined above.
 const dflow = new Dflow([helloWorld]);
 // Create a helloWorld node.
 dflow.node("helloWorld");
 // run graph
 dflow.run();
</script>

Usage

See:

License

MIT

About

A minimal Dataflow programming engine

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Contributors 3

AltStyle によって変換されたページ (->オリジナル) /