JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 5200
  • Score
    100M100P100Q127713F
  • License Apache-2.0

Adapter code to run the CometD JavaScript library in a NodeJS environment

Package Exports

  • cometd-nodejs-client
  • cometd-nodejs-client/cometd-nodejs-client.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cometd-nodejs-client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

NodeJS CI

The CometD Project

CometD NodeJS Client

This project implements ES6 adapter code that allows the CometD JavaScript Client to run in NodeJS 18.x or greater.

The adapter code exports an implementation of XMLHttpRequest and WebSocket so that the CometD JavaScript Client works in NodeJS as it does within a browser environment.

WebSocket is supported via the ws package.

NPM Installation

Install the CometD NodeJS Client:

npm install cometd-nodejs-client

Usage (ES6)

import { adapt } from "cometd-nodejs-client";
import { CometD } from "cometd";

// Shim XMLHTTPRequest for Node.js (required by CometD).
adapt();

// Your normal CometD client application here.
const client = new CometD();

See here for an example CometD client application.