simple-concat

1.0.1 • Public • Published

simple-concat travis npm downloads javascript style guide

Super-minimalist version of concat-stream. Less than 15 lines!

install

npm install simple-concat

usage

This example is longer than the implementation.

var s = new stream.PassThrough()
concat(s, function (err, buf) {
  if (err) throw err
  console.error(buf)
})
s.write('abc')
setTimeout(function () {
  s.write('123')
}, 10)
setTimeout(function () {
  s.write('456')
}, 20)
setTimeout(function () {
  s.end('789')
}, 30)

license

MIT. Copyright (c) Feross Aboukhadijeh.

Package Sidebar

Install

npm i simple-concat

Weekly Downloads

7,909,332

Version

1.0.1

License

MIT

Unpacked Size

4.62 kB

Total Files

6

Last publish

Collaborators

  • feross