Irina Glushko 2389e7160b HW1 done | před 3 roky | |
---|---|---|
.. | ||
test | před 3 roky | |
.travis.yml | před 3 roky | |
LICENCE | před 3 roky | |
README.md | před 3 roky | |
index.js | před 3 roky | |
package.json | před 3 roky |
Creates a duplex stream
Taken from event-stream
Takes a writable stream and a readable stream and makes them appear as a readable writable stream.
It is assumed that the two streams are connected to each other in some way.
var cp = require('child_process')
, duplex = require('duplexer')
, grep = cp.exec('grep Stream')
duplex(grep.stdin, grep.stdout)
npm install duplexer
npm test