0.0.1 • Published 12 years ago

seaport-stream v0.0.1

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

seaport-stream build status

Create streams over seaport

Basically seaport but allows you to get streams and service streams rather then mess with the details of the IO protocol

Example Client

var seaport = require("seaport-stream")

var ports = seaport.connect("localhost", 9093)

var stream = ports.get("magic@1.2.x")

stream.on("data", function (data) {
    console.log("[CLIENT]", data.toString())
})
stream.write("hello from client!")

Example Server

var seaport = require("seaport-stream")

var ports = seaport.connect("localhost", 9093)

ports.service("magic@1.2.3", handleStream)

function handleStream(stream) {
    stream.write("hello from magic!")
    stream.on("data", function (data) {
        console.log("[MAGIC]", data.toString())
    })
}

Installation

npm install seaport-stream

Contributors

  • Raynos

MIT Licenced