UNPKG

1.06 kBMarkdownView Raw
1*dataflo.ws*: dataflow processing for javascript
2=============================================
3
4example
5-------------------------------
6
7you can see a working example by running
8
9 npm install -g dataflo.ws
10 cd $NODE_PATH/dataflo.ws/example/yql/ # example project directory
11 dataflows daemon yql
12
13abstract
14-------------------------------
15
16every application is based on series of dataflows. if your dataflow is written
17in a program code, you have a problem. people don't want to screw up, but
18they do. `dataflo.ws` is an abstract async processing framework for describing
19dataflows in simple configuration.
20
21you can use a dataflow for description of programmatic dataflows. or real life ones.
22
23add DSL by your own taste.
24
25quick start
26-------------------------------
27
28install dataflows:
29
30`npm install -g dataflo.ws`
31
32create dataflows project
33
34```
35DFPROJECT=my-project-name
36mkdir $DFPROJECT
37cd $DFPROJECT
38dataflows init
39```
40
41create an dataflows script
42
43`dataflows create script my-script-name`
44
45create a dataflows task class
46
47`dataflows create class my-class-name`
48