Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
faye-websocket
Advanced tools
The faye-websocket npm package is a WebSocket client and server implementation that allows you to build real-time web applications. It provides an easy-to-use API for handling WebSocket connections and messages.
WebSocket Client
This code sample demonstrates how to create a WebSocket client that connects to a server, sends a message, and listens for messages and the close event.
const WebSocket = require('faye-websocket');
const ws = new WebSocket.Client('ws://www.example.com/');
ws.on('open', function(event) {
console.log('Connection established');
ws.send('Hello, world!');
});
ws.on('message', function(event) {
console.log('Received message: ' + event.data);
});
ws.on('close', function(event) {
console.log('Connection closed', event.code, event.reason);
ws = null;
});
WebSocket Server
This code sample shows how to set up a WebSocket server that can accept connections, echo received messages back to the client, and handle the close event.
const http = require('http');
const WebSocket = require('faye-websocket');
const server = http.createServer();
server.on('upgrade', function(request, socket, body) {
if (WebSocket.isWebSocket(request)) {
const ws = new WebSocket(request, socket, body);
ws.on('message', function(event) {
ws.send(event.data);
});
ws.on('close', function(event) {
console.log('Connection closed', event.code, event.reason);
ws = null;
});
}
});
server.listen(3000);
The 'ws' package is a popular WebSocket implementation for Node.js. It is similar to faye-websocket but is more widely used and actively maintained. It offers a simpler interface for WebSocket communication and is known for its performance and compliance with the WebSocket protocol.
Socket.IO is a library that enables real-time, bidirectional and event-based communication between web clients and servers. It is more feature-rich than faye-websocket, providing fallbacks for older browsers, automatic reconnection, and a higher-level event-driven API.
The 'websocket' package provides both client and server-side implementations of the WebSocket protocol. It is similar to faye-websocket but offers additional features such as WebSocket extensions and a wider range of subprotocols.
This is a robust, general-purpose WebSocket implementation extracted from the Faye project. It provides classes for easily building WebSocket servers and clients in Node. It does not provide a server itself, but rather makes it easy to handle WebSocket connections within an existing Node application. It does not provide any abstraction other than the standard WebSocket API.
The server-side socket can process draft-75,
draft-76,
hybi-07
and later versions of the protocol. It selects protocol versions automatically,
supports both text
and binary
messages, and transparently handles ping
,
pong
, close
and fragmented messages.
You can handle WebSockets on the server side by listening for HTTP Upgrade requests, and creating a new socket for the request. This socket object exposes the usual WebSocket methods for receiving and sending messages. For example this is how you'd implement an echo server:
var WebSocket = require('faye-websocket'),
http = require('http');
var server = http.createServer();
server.addListener('upgrade', function(request, socket, head) {
var ws = new WebSocket(request, socket, head);
ws.onmessage = function(event) {
ws.send(event.data);
};
ws.onclose = function(event) {
console.log('close', event.code, event.reason);
ws = null;
};
});
server.listen(8000);
The client supports both the plain-text ws
protocol and the encrypted wss
protocol, and has exactly the same interface as a socket you would use in a web
browser. On the wire it identifies itself as hybi-08, though it's compatible
with servers speaking later versions of the protocol, at least up to version 17.
var WebSocket = require('faye-websocket'),
ws = new WebSocket.Client('ws://www.example.com/');
ws.onopen = function(event) {
console.log('open');
ws.send('Hello, world!');
};
ws.onmessage = function(event) {
console.log('message', event.data);
};
ws.onclose = function(event) {
console.log('close', event.code, event.reason);
ws = null;
};
The WebSocket API consists of several event handlers and a method for sending messages.
String
(for text
frames) or a Buffer
(for binary frames).String
or a Buffer
and
sends a text or binary message over the connection to the other peer.(The MIT License)
Copyright (c) 2009-2011 James Coglan
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
Standards-compliant WebSocket server and client
We found that faye-websocket 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
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.