duplexer
Creates a duplex stream
Last updated 12 years ago by dominictarr .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ gnpm install duplexer 
SYNC missed versions from official npm registry.

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

Current Tags

  • 0.1.2                                ...           latest (4 years ago)

7 Versions

  • 0.1.2                                ...           4 years ago
  • 0.1.1                                ...           11 years ago
  • 0.1.0                                ...           12 years ago
  • 0.0.4                                ...           12 years ago
  • 0.0.3                                ...           12 years ago
  • 0.0.2                                ...           12 years ago
  • 0.0.1                                ...           12 years ago
Maintainers (1)
Downloads
Today 1
This Week 1
This Month 1
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (1)

Copyright 2013 - present © cnpmjs.org | Home |