seaport-stream

0.0.1 • Public • Published

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

Readme

Keywords

none

Package Sidebar

Install

npm i seaport-stream

Weekly Downloads

1

Version

0.0.1

License

none

Last publish

Collaborators

  • raynos