StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
StackGenVis/frontend/node_modules/pipe
Angelos Chatzimparmpas f521a3509d paper-version 4 years ago
..
LICENSE.TXT paper-version 4 years ago
README paper-version 4 years ago
nodepipe.js paper-version 4 years ago
package.json paper-version 4 years ago
test.js paper-version 4 years ago

README

nodepipe

A javascript implementation of 'intercepting filter,' inspired by netty and grizzly pipelines.

Currently the implementation is beta.

Example:

var p = new Pipeline();
p.addHandler({incoming:function(ctx,evt){console.log(evt);ctx.forward(evt+evt);}});
p.addHandler({incoming:function(ctx,evt){console.log(evt);}});
p.pushIncoming("yo");

>yo
>yoyo

TODO:
1. Move the test out of nodepipe.js and into its own file
2. Test all basic functionality
3. Clarify event interface (type of event, body of event, etc.)
4. Document basic functionality
5. Integrate with node.js's stream events