Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

cometd-nodejs-server

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cometd-nodejs-server

CometD server for NodeJS

  • 1.2.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

NodeJS CI

The CometD Project

CometD NodeJS Server

Server side APIs and implementation of the Bayeux Protocol for the NodeJS environment. WebSocket not (yet) supported.

NPM Installation

npm install cometd-nodejs-server

Running the tests

npm install mocha
npm install cometd
npm install cometd-nodejs-client
npm test

Minimal Application

var http = require('http');

var cometd = require('cometd-nodejs-server');
var cometdServer = cometd.createCometDServer();

var httpServer = http.createServer(cometdServer.handle);
httpServer.listen(0, 'localhost', function() {
    // Your application code here.
});

Customizing CometD Configuration

var cometd = require('cometd-nodejs-server');
var cometdServer = cometd.createCometDServer({
    logLevel: 'debug', // Emits logging on the console
    timeout: 10000, // Heartbeat timeout in milliseconds
    maxInterval: 15000, // Server-side session expiration in milliseconds
    ...
});

Server timeout and CometD timeout

CometD clients send periodic heartbeat messages on the /meta/connect channel. The CometD server holds these heartbeat messages for at most the timeout value (see above), by default 30 seconds.

The NodeJS server also has a timeout property that controls the maximum time to handle a request/response cycle, by default 120 seconds.

You want to be sure that NodeJS' Server.timeout is greater than CometD's CometDServer.options.timeout, especially if you plan to increase the CometD timeout.

Creating Channels and Receiving Messages

var channel = cometdServer.createServerChannel('/service/chat');
channel.addListener('message', function(session, channel, message, callback) {
    // Your message handling here.

    // Invoke the callback to signal that handling is complete.
    callback();
});

Publishing Messages on a Channel

var channel = cometdServer.createServerChannel('/chat');
channel.publish(session, message.data);

Installing a Security Policy

cometdServer.policy = {
    canHandshake: function(session, message, callback) {
        // Your handshake policy here.
        var allowed = ...;
        
        // Invoke the callback to signal the policy result. 
        callback(null, allowed);
    }
};

Sending a Direct Message to a Session

var session = cometdServer.getServerSession(sessionId);
session.deliver(null, '/service/chat', {
    text: 'lorem ipsum'
});

Reacting to Session Timeout/Disconnection

session.addListener('removed', function(session, timeout) {
    if (timeout) {
        // Session was expired by the server.
    } else {
        // Session was explicitly disconnected.
    }
});

Accessing Contextual Information

In certain cases it is necessary to access contextual information such as the HTTP request that carries incoming CometD messages, or the HTTP response that carries outgoing CometD messages.

var channel = cometdServer.createServerChannel('/chat');
channel.addListener('message', function(session, channel, message, callback) {
    // Access contextual information.
    var request = cometdServer.context.request;
    if (request) {
        // You can read headers from the NodeJS HTTP request.
        var myHeader = request.headers['X-My-Header'];
        ...
    }

    var response = cometdServer.context.response;
    if (response) {
        // You can add headers to the NodeJS HTTP response.
        response.setHeader('X-My-Header', 'foo_bar');
        ...
    }

    // Invoke the callback to signal that handling is complete.
    callback();
});

NOTE: always check if the request and response objects are defined; they may not be defined if the transport used is not HTTP but, for example, WebSocket.

Keywords

FAQs

Package last updated on 20 Nov 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc