npm install websocket.ioWebSocket.IO
============
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.
- 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
#### Listening on a port
``js
var ws = require('websocket.io')
, server = ws.listen(3000)
server.on('connection', function (client) {
client.on('message', function () { });
client.on('close', function () { });
});
`
#### Intercepting WebSocket requests for a http.Server
`js
var ws = require('websocket.io')
, http = require('http').createServer().listen(3000)
, server = ws.attach(http)
server.on('connection', function (client) {
client.on('message', function () { });
client.on('close', function () { });
});
`
`js
var ws = require('websocket.io')
, server = new ws.Server()
// … somewhere in your http server code
server.on('upgrade', function (req, socket, head) {
server.handleUpgrade(req, socket, head);
});
`
`js
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
};
`
These are exposed by require('websocket.io')
#### Properties
- version _(String)_: protocol revision numberServer
- _(Function)_: server constructorSocket
- _(Function)_: client constructorLogger
- _(Function)_: logger constructorprotocols
- _(Object)_: hash of different Socket constructors for each protocoldrafts
- _(Function)_: client for drafts 75/76/007
- _(Function)_: client for protocol 78
- _(Function)_: client for protocol 813
- _(Function)_: client for protocol 13
#### Methods
- listenhttp.Server
- Creates an which listens on the given port and attaches WS501 Not Implemented
to it. It returns for regular http requests.Number
- Parameters
- : port to listen on.Function
- : callback for listen. The options object can be suppliedObject
as second parameter as well.
- : optional, options object. See Server constructor API forServer
options.
- Returns attach
- upgrade
- Captures requests for a http.Server. In other words, makeshttp.Server
a regular http.Server websocket-compatible.
- Parameters
- : server to attach to.Object
- : optional, options object. See Server constructor API forServer
options.
- Returns
#### Events
- connectionSocket
- Fired when a new connection is established.
- Arguments
- : a Socket object
#### Methods
- constructor
- Initializes the server
- Parameters
- Object: optional, options objectlogger
- Options
- (Object/Boolean): logger object. If you want to customize theLogger
logger options, please supply a new object (see API below). If youtrue
want to enable it, set this option to .
- handleUpgradeupgrade
- Handles an incoming request that triggered an eventhttp.Request
- Parameters
- : http requesthttp.Stream
- : request socketBuffer
- : stream headServer
- Returns
#### Events
- messageString
- Fired when data is received.
- Arguments
- : dataclose
-
- Fired when the connection is closed.
#### Properties
- open
- Whether the socket is open for writing
#### Methods
- sendString
- Sends data to the socket.
- Parameters
- : data to sendSocket
- Returns
- closeSocket
- Closes the socket.
- Returns
- destroySocket
- Forcibly closes the socket.
- Returns
#### Methods
- constructor
- Initializes the logger
- Parameters
- Object: optional, options objectenabled
- Options
- (Boolean): whether to output to the console (false).log level
- (Number): log level (3).colors
- (Boolean): whether to output colors (true).
#### Methods
- log
- debug
- warn
- info
The support channels for websocket.io are the same as socket.io:
* irc.freenode.net #socket.io
* Google Groups
* Website
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
``
$ make testBenchmarks
```
$ make bench
(The MIT License)
Copyright (c) 2011 Guillermo Rauch <guillermo@learnboost.com>
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.