engine.io-stream

0.4.3 • Public • Published

engine.io-stream

simple interface to engine.io via node streams

The API is pretty much the same as shoe

Example Client

var engine = require("engine.io-stream")
 
// attach to an engine.io server at url '/numbers'
var stream = engine("/numbers")
 
stream.on('data', function(data) {
    console.log(data)
    stream.write('ack')
})

Example Server

var http = require("http")
var EngineServer = require("engine.io-stream")
 
// engines need to attach to server instances (see below)
var server = http.createServer(...)
 
var engine = EngineServer(function(stream) {
    // send back some numbers, you know...for fun
    var iv = setInterval(function () {
        stream.write(String(Math.floor(Math.random() * 2)))
    }, 250)
 
    stream.once("end", function () {
        clearInterval(iv)
    })
 
    stream.pipe(process.stdout, { end : false })
})
 
// expose the engine instance at this url
engine.attach(server, "/numbers")
 
server.listen(8080, function() {
    console.log("Listening on port 8080")
})

Installation

npm install engine.io-stream

Contributors

  • Raynos
  • shtylman
  • juliangruber
  • hij1nx

Licence

MIT

Readme

Keywords

none

Package Sidebar

Install

npm i engine.io-stream

Weekly Downloads

579

Version

0.4.3

License

none

Last publish

Collaborators

  • raynos
  • defunctzombie