write-only-stream
v1.1.0
Published
wrap a readable/writable stream to be write-only
Downloads
23
Readme
write-only-stream
wrap a readable/writable stream to be write-only to prevent mucking up or disclosing output
example
Suppose you have a module that uses a readable/writable stream internally but want to expose just the writable part of that internal stream. This is common if you use the readable side internally and expose the writable side as the interface.
Now we can write some code like this contrived example with a through
stream
internally for convenience:
var through = require('through2');
var concat = require('concat-stream');
var writeonly = require('../');
module.exports = function (cb) {
var stream = through(function (buf, enc, next) {
this.push(buf.toString('utf8').toUpperCase());
next();
});
stream.pipe(concat(cb));
return writeonly(stream);
};
but consumers won't be able to read from the output side:
var uc = require('./uc.js');
process.stdin.pipe(uc(function (body) {
console.log(body.toString('utf8'));
})); // can't .pipe() the uc stream anywhere
methods
var writeonly = require('write-only-stream')
var wo = writeonly(stream)
Return a writable stream wo
that wraps the readable/writable stream
argument
given to only expose the writable side.
stream
can be a streams1 or streams2 stream.
install
With npm do:
npm install write-only-stream
license
MIT