zouyong 9d41c5b812 init 5 anos atrás
..
test 9d41c5b812 init 5 anos atrás
.npmignore 9d41c5b812 init 5 anos atrás
.travis.yml 9d41c5b812 init 5 anos atrás
LICENSE 9d41c5b812 init 5 anos atrás
README.md 9d41c5b812 init 5 anos atrás
code-of-conduct.md 9d41c5b812 init 5 anos atrás
index.js 9d41c5b812 init 5 anos atrás
package.json 9d41c5b812 init 5 anos atrás

README.md

duplexpair

NPM Version NPM Downloads Build Status Coverage Status Dependency Status

Make a full duplex stream with 2 Duplex endpoints.

Note:

This is a fork of duplexpair, changed to use the "native" Duplex stream that is part of Node.JS instead of the version from the readable-stream package.

Install: npm install native-duplexpair

const DuplexPair = require('native-duplexpair');

const { socket1, socket2 } = new DuplexPair();

socket1.write('Hi');
console.log(socket2.read());  // => <Buffer 48 69>

// Or, using options that are passed to the Duplex constructor:

const { socket1, socket2 } = new DuplexPair({ encoding: 'utf8' });

socket1.write('Hi');
console.log(socket2.read());  // => 'Hi'

License

MIT