1.0.0 • Published 10 months ago

pure-work v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months ago

Pure Flow

Pure JavaScript Workflow Engine

Install

npm install pure-flow --save

What is it?

Pure Flow is a standards-based Workflow Engine with no dependencies, that enables you to run workflows by chaining JavaScript Promises.

Layers

Flow

import { Flow } from "pure-flow"

const options = new FlowOptions("testflow", this.run.bind(this), flow=>{
  flow.on("starting", e=>{
    alert(6)
  })
});

const flow = Flow.factory(options);

Web Component

The flow-ui Web Component can be used to run visual workflows.

Default UI components

1.0.0

10 months ago