• Stars
    star
    329
  • Rank 127,556 (Top 3 %)
  • Language
    JavaScript
  • Created almost 13 years ago
  • Updated almost 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

WebSocket.IO

Build Status

WebSocket.IO is an abstraction of the websocket server previously used by Socket.IO. It has the broadest support for websocket protocol/specifications and an API that allows for interoperability with higher-level frameworks such as Engine, Socket.IO's realtime core.

Features

  • Fast
  • Minimalistic
    • Offers an integration API for higher-level impls to handle authorization, routing, etc
  • Widest support of protocols
    • Draft-75
    • Draft-76
    • Draft-00
    • Protocol version 7
    • Protocol version 8
    • Protocol version 13
  • Written for Node 0.6

How to use

Server

(A) Listening on a port

var ws = require('websocket.io')
  , server = ws.listen(3000)

server.on('connection', function (socket) {
  socket.on('message', function () { });
  socket.on('close', function () { });
});

(B) Intercepting WebSocket requests for a http.Server

var ws = require('websocket.io')
  , http = require('http').createServer().listen(3000)
  , server = ws.attach(http)

server.on('connection', function (socket) {
  socket.on('message', function () { });
  socket.on('close', function () { });
});

(C) Passing in requests

var ws = require('websocket.io')
  , server = new ws.Server()

server.on('connection', function (socket) {
  socket.send('hi');
});

// …
httpServer.on('upgrade', function (req, socket, head) {
  server.handleUpgrade(req, socket, head);
});

Client-side example

var ws = new WebSocket("ws://host:port/");        

socket.onopen = function() {
 //do something when connection estabilished
};

socket.onmessage = function(message) {
 //do something when message arrives
};

socket.onclose = function() {
 //do something when connection close
};

API

Server



Top-level

These are exposed by require('websocket.io'):

Properties
  • version (String): websocket.io version
  • protocols (Object): constructors for drafts 75/76/00, protocols 7/8/13.
Methods
  • listen
    • Creates an http.Server which listens on the given port and attaches WS to it. It returns 501 Not Implemented for regular http requests.
    • Parameters
      • Number: port to listen on
      • Object: optional options object. See Server for options details.
      • Function: callback for listen
    • Returns Server
  • attach
    • Captures upgrade requests for a http.Server. In other words, makes a regular http.Server websocket-compatible.
    • Parameters
      • http.Server: server to attach to.
      • Object: optional, options object. See Server for options details.
    • Returns Server


Server

The main server/manager. Inherits from EventEmitter.

Properties
  • clients (Object): table of all connected clients. This property is not set when the Server option clientTracking is false.
  • clientsCount (Number): total count of connected clients. This property is not set when the Server option clientTracking is false.
Events
  • connection
    • Fired when a new connection is established.
    • Arguments
      • Socket: a Socket object
Methods
  • constructor
    • Initializes the server
    • Options
      • path (String): if set, server only listens to request for this path
      • clientTracking (Boolean): enables client tracking. The Server#clients property only is available when this is true (true)
  • handleUpgrade


Socket

A representation of a client. Inherits from EventEmitter.

Properties
  • req (http.ServerRequest): Request that originated the connection.
  • socket (net.Socket): Stream that originated the connection.
  • readyState (String): opening, open, closed.
  • name (String): websocket-hixie, websocket.
  • protocolVersion (String): hixie-75, hixie-76 and hybi.
Events
  • close
    • Fired when the connection is closed.
  • message/data
    • Fired when data is received
    • Arguments
      • String: utf-8 string
  • error
    • Fired when an error occurs.
    • Arguments
      • Error: error object
Methods
  • send / write
    • Sends a message.
    • Parameters
      • String: utf-8 string with outgoing data
    • Returns Socket for chaining
  • close / end
    • Closes the socket
    • Returns Socket for chaining
  • destroy
    • Forcibly closes the socket.

Support

The support channels for websocket.io are the same as socket.io:

Development

To contribute patches, run tests or benchmarks, make sure to clone the repository:

git clone git://github.com/LearnBoost/websocket.io.git

Then:

cd websocket.io
npm install

Tests

$ make test

Credits

WebSocket.IO is possible thanks to the contributions by:

License

(The MIT License)

Copyright (c) 2011 Guillermo Rauch <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

cluster

Node.JS multi-core server manager with plugins support.
JavaScript
2,292
star
2

up

Zero-downtime reloads and requests load balancer based on distribute.
JavaScript
540
star
3

soda

Selenium Node.JS adapter
JavaScript
466
star
4

express-mongoose

Plugin for easy rendering of Mongoose async Query results.
JavaScript
451
star
5

tobi

Tobi: Expressive server-side functional testing with jQuery
JavaScript
411
star
6

console-trace

Adds a handy `trace` flag to the console object to prepend the file and line number.
JavaScript
296
star
7

socket.io-spec

Specification for the Socket.IO Protocol (0.9)
225
star
8

distribute

Distribute is a middleware-based API to expressively perform request routing / load balancing in Node.JS.
JavaScript
219
star
9

nodestream

Realtime apps made easy with templating
JavaScript
219
star
10

superagent-oauth

node-oauth signing plugin for superagent requests
JavaScript
87
star
11

shorty

LearnBoost URL shortening/redirection service.
JavaScript
79
star
12

CSS3-Overlay

A CSS3 Overlay system for modal dialogs.
65
star
13

up-hook

UP middleware to enable seamless zero-downtime HTTP server reloads upon GitHub post-receive webhooks.
JavaScript
51
star
14

jadevu

Minimal precompiled Jade templates exposed to the client.
JavaScript
50
star
15

texty

Canvas text
JavaScript
48
star
16

Socket.IO-node-client

[WIP] Socket.IO 0.7 Node.JS client implementation, with simulated browser transports
JavaScript
43
star
17

drawback

The Drawback framework provides a seamless way to render 2D drawings on the client side using HTML5 technologies with a server-side backend.
JavaScript
38
star
18

stylus

Placeholder repo for keeping Stylus docs in place
34
star
19

connect-timeout

Requests timeout middleware
JavaScript
32
star
20

socket.io-node

32
star
21

cfg.js

Minimal Node.JS configuration interface with support for overrides, environments and inheritance.
JavaScript
30
star
22

cluster-mail

Cluster exceptions in your inbox
JavaScript
26
star
23

superagent-queue

Adds request queueing capabilities to superagent
JavaScript
18
star
24

cluster-log

Advanced logging plugin for cluster
JavaScript
15
star
25

engine.io-flash

1
star