An open API service indexing awesome lists of open source software.

https://github.com/soarez/funil

agregate multiple streams into a single one
https://github.com/soarez/funil

Last synced: over 1 year ago
JSON representation

agregate multiple streams into a single one

Awesome Lists containing this project

README

          

# funil

a stream that aggegates other streams

```javascript
var Funil = require('./funil');

var f = new Funil();
f.add(streamA);
f.add(streamB);
f.add(streamC);
f.add(streamD);

f.on('data', function(d) { /* d can be from either one of the streams */ });
```