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.
- Host: GitHub
- URL: https://github.com/awinterman/node-accum-transform
- Owner: AWinterman
- License: mit
- Created: 2014-04-01T03:26:26.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-04-01T20:09:41.000Z (about 12 years ago)
- Last Synced: 2025-02-12T09:24:11.616Z (over 1 year ago)
- Language: JavaScript
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.txt
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()
```