• Stars
    star
    108
  • Rank 321,259 (Top 7 %)
  • Language
    JavaScript
  • Created over 13 years ago
  • Updated about 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

workflow processing for javascript

dataflo.ws: dataflow processing for javascript

build NPM Version codecov.io

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