Last Updated: February 25, 2016
·
945
· twilson63

Event-Stream can turn any function into a stream

https://github.com/dominictarr/event-stream

var es = require('event-stream')

es.map(function (data, callback) {
  //transform data
  // ...
  callback(null, data)
})

Event-Stream is an awesome module that allows you to create through streams, read arrays to streams, and write arrays from streams.