engine.io-stream

Make engine.io a valid node stream

10 个版本
安装
npm install engine.io-stream
yarn add engine.io-stream
pnpm add engine.io-stream
bun add engine.io-stream
README

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

版本列表
0.4.3 2014-01-13
0.4.2 2013-11-12
0.4.1 2013-08-12
0.4.0 2013-08-03
0.3.2 2013-07-09
0.3.1 2013-06-13
0.3.0 2013-05-10
0.2.1 2013-02-19
0.2.0 2012-12-31
0.1.0 2012-12-07