An open API service indexing awesome lists of open source software.

https://github.com/evanxd/flowjs

A Webhook-featured workflow automation framework.
https://github.com/evanxd/flowjs

automation flowjs framework webhook workflow

Last synced: about 1 year ago
JSON representation

A Webhook-featured workflow automation framework.

Awesome Lists containing this project

README

          

# Flow.js
A Webhook-featured workflow automation framework.

## How-to
Initialize a flowjs instance.
```js
var flow = require('node-flowjs');
```

Create a workflow for employees to apply for expenditure. You could check and use the full example with the [flowjs-example][flowjs-example] repository.
```js
flow.setup('expenditure-application-workflow', {
approverId: 'wowens'
})
.mailhook({
subject: 'expenditure-application-workflow'
});
```

[flowjs-example]: https://github.com/evanxd/flowjs-example