1.0.1 • Published 7 years ago

writeable-buffer v1.0.1

Weekly downloads
8
License
MIT
Repository
github
Last release
7 years ago

writeable-buffer

A Writeable that buffers all data it receives up to maxBufferSize (default 10 MB).

If .toString([[encoding,] callback]) or toBuffer([callback]) are called with a callback, they become asynchronous and wait until the stream has been ended with stream.end() or an error occured. Without a callback they return all data buffered at that time.

Usage:

const WritableBuffer = require('writeable-buffer');

const buffer = new WritableBuffer({
    maxBufferSize: 5000, // Only buffer up to 5kb
});

stream.pipe(buffer, { end : true });

buffer.toString('utf8', (error, string) => {
    console.log(string);
});
1.0.1

7 years ago

1.0.0

7 years ago