Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
websocket.io
Advanced tools
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.
var ws = require('websocket.io')
, server = ws.listen(3000)
server.on('connection', function (socket) {
socket.on('message', function () { });
socket.on('close', function () { });
});
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 () { });
});
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);
});
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')
:
version
(String): websocket.io versionprotocols
(Object): constructors for drafts 75/76/00, protocols 7/8/13.listen
http.Server
which listens on the given port and attaches WS
to it. It returns 501 Not Implemented
for regular http requests.Number
: port to listen onObject
: optional options object. See Server
for options details.Function
: callback for listen
Server
attach
upgrade
requests for a http.Server
. In other words, makes a regular http.Server
websocket-compatible.http.Server
: server to attach to.Object
: optional, options object. See Server
for options details.Server
The main server/manager. Inherits from EventEmitter.
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
.connection
Socket
: a Socket objectString
): if set, server only listens to request for this pathBoolean
): enables client tracking. The
Server#clients
property only is available when this is true (true
)handleUpgrade
A representation of a client. Inherits from EventEmitter.
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
.close
message
/data
String
: utf-8 stringerror
Error
: error objectsend
/ write
String
: utf-8 string with outgoing dataSocket
for chainingclose
/ end
Socket
for chainingdestroy
The support channels for websocket.io
are the same as socket.io
:
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 test
WebSocket.IO is possible thanks to the contributions by:
(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.
FAQs
Socket.IO websocket server
We found that websocket.io demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.