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

https://github.com/awinterman/node-accum-transform

concat-stream as a transform stream.
https://github.com/awinterman/node-accum-transform

Last synced: 12 months ago
JSON representation

concat-stream as a transform stream.

Awesome Lists containing this project

README

          

A stream that accepts data until it ends, and then emits it all at once.

```javascript
var accum = require('accum-transform')

var stream = accum(stream2_options)

stream.on('data', function(data) {
/* we have all the data */
})

stream.write('wutever')
stream.write(' !')
stream.end()
```