https://github.com/apla/zmok
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/apla/zmok
- Owner: apla
- License: mit
- Created: 2016-09-20T07:32:03.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-09-20T07:34:53.000Z (almost 10 years ago)
- Last Synced: 2025-12-08T17:50:12.544Z (7 months ago)
- Language: JavaScript
- Size: 1.15 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
*dataflo.ws*: dataflow processing for javascript
=============================================
[](https://travis-ci.org/apla/dataflo.ws)
[](https://www.npmjs.org/package/dataflo.ws)
[](https://codecov.io/github/apla/dataflo.ws?branch=master)
example
-------------------------------
you can see a working example by running
npm install -g dataflo.ws
cd $NODE_PATH/dataflo.ws/example/yql/ # example project directory
dataflows daemon yql
abstract
-------------------------------
every application is based on series of dataflows. if your dataflow is written
in a program code, you have a problem. people don't want to screw up, but
they do. `dataflo.ws` is an abstract async processing framework for describing
dataflows in simple configuration.
you can use a dataflow for description of programmatic dataflows. or real life ones.
add DSL by your own taste.
quick start
-------------------------------
install dataflows:
`npm install -g dataflo.ws`
create dataflows project
```
DFPROJECT=my-project-name
mkdir $DFPROJECT
cd $DFPROJECT
dataflows init
```
create an dataflows script
`dataflows create script my-script-name`
create a dataflows task class
`dataflows create class my-class-name`