0.0.1 • Published 12 years ago

pipe-stream v0.0.1

Weekly downloads
2
License
-
Repository
github
Last release
12 years ago

pipe-stream

A function that pipes streams

Example

var net = require("net")
    , piper = require("pipe-stream")
    , through = require("through")

net.createServer(piper(through)).listen(12632, function () {
    var conn = net.connect(12632)

    conn.on("data", function (data) {
        console.log("[CLIENT]", data.toString())
    })

    conn.write("self")
})

Installation

npm install pipe-stream

Contributors

  • Raynos

MIT Licenced