Socket
Socket
Sign inDemoInstall

duplexer

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    duplexer

Creates a duplex stream


Version published
Weekly downloads
15M
increased by2.6%
Maintainers
1
Install size
6.15 kB
Created
Weekly downloads
 

Package description

What is duplexer?

The `duplexer` npm package is a utility for creating a duplex (readable and writable) stream from two separate streams: a writable stream for writing to and a readable stream for reading from. This is particularly useful in scenarios where you need to treat two separate streams as a single duplex stream for piping data through a series of transformations or operations.

What are duplexer's main functionalities?

Creating a duplex stream from a writable and readable stream

This code demonstrates how to create a duplex stream using `duplexer` by combining a writable stream, which logs data it receives, and a readable stream, which emits a single piece of data. The resulting duplex stream can be used to read data emitted by the readable stream and write data to the writable stream.

const {Writable, Readable} = require('stream');
const duplexer = require('duplexer');

const writable = new Writable({
  write(chunk, encoding, callback) {
    console.log(`Writing: ${chunk.toString()}`);
    callback();
  }
});

const readable = new Readable({
  read(size) {
    this.push('Read data');
    this.push(null); // No more data
  }
});

const duplex = duplexer(writable, readable);
duplex.on('data', (data) => console.log(`Read from duplex: ${data.toString()}`));
duplex.write('Data to write');

Other packages similar to duplexer

Readme

Source

duplexer

build status dependency status

browser support

Creates a duplex stream

Taken from event-stream

duplex (writeStream, readStream)

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.

Example

var cp = require('child_process')
  , duplex = require('duplexer')
  , grep = cp.exec('grep Stream')

duplex(grep.stdin, grep.stdout)

Installation

npm install duplexer

Tests

npm test

Contributors

  • Dominictarr
  • Raynos
  • samccone

MIT Licenced

FAQs

Last updated on 12 Aug 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc