Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

stream-iterator

mirkok8MIT0.0.1

transform streams into async iterators

readme

stream-iterator

Turns a Node.js streams2 stream into an asynchronous iterator.\ The iterator can be conveniently used with the iterator functions in the async-iterators module.

var createStreamIterator = require('stream-iterator')

var iterator = createStreamIterator(aReadableStream)

var iterate = function() {
  iterator.next(function(err, data) {
    console.log(data)
    if (data) iterate()
  })
}

License

MIT