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.
- Host: GitHub
- URL: https://github.com/evanxd/flowjs
- Owner: evanxd
- Created: 2017-03-27T01:29:03.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-10T01:56:14.000Z (almost 9 years ago)
- Last Synced: 2025-03-08T11:04:31.664Z (about 1 year ago)
- Topics: automation, flowjs, framework, webhook, workflow
- Language: JavaScript
- Homepage: https://npmjs.com/package/node-flowjs
- Size: 70.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
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