oboe.js icon indicating copy to clipboard operation
oboe.js copied to clipboard

Implement WritableStream

Open nickshanks opened this issue 5 years ago • 0 comments

I would like it if Oboe implemented WritableStream too.

Instead of oboe(readableStream.pipe(something).pipe(somethingElse)).on('done', (json) => …); We could have readableStream.pipe(something).pipe(somethingElse).pipe(oboe()).on('finish', (json) => …);

It would fit into the left-to-right reading of data pipelining, and use the standard Writable event names.

nickshanks avatar Dec 12 '18 12:12 nickshanks