Skip to content

Raynos/duplexer

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
March 29, 2015 14:05
August 9, 2012 20:45
August 9, 2012 20:45
March 8, 2021 17:12
April 26, 2013 10:39
August 12, 2020 10:27
August 12, 2020 10:27

DEPRECATED.

Apparently this module is broken and not compatible with more recent versions of nodejs.

Do not use.

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