Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
cometd-node-promise-client
Advanced tools
CometD client for Node.js that adds support for promises
Add the client to your project by running:
npm install cometd-node-promise-client
1.a) with the default console logger:
const cometd = new CometdClient();
OR
1.b) with the Winston logger:
Winston.loggers.add('COMETD', {
console: { level: 'info', colorize: true, label: 'COMETD' }
});
const cometd = new CometdClient(Winston.loggers.get('COMETD'));
cometd.configure({
url: cometdServerUrl,
requestHeaders: { Authorization: 'Bearer ' + this.session.access_token }, // Optional parameter if you wan to pass additional headers
appendMessageTypeToURL: false
});
topicName
topic:cometd.connect().then(() => {
// Connection succeeded
cometd.subscribe(topicName, onMessageReceived).then(subscription => {
// This promise resolves when the client has succesfully subscribed
});
});
The onMessageReceived
callback function is executed each time a topicName
message is received.
Alternatively, you can batch subscriptions (network optimization):
const cometdPromises = [
cometd.subscribe(topic1, onMessage1Received),
cometd.subscribe(topic2, onMessage2Received)
];
cometd.batch(cometdPromises).then(() => {
// This promise resolves when the batch is processed
});
cometd.unsubscribe(subscription).then(() => {
// This promise resolves when the client has succesfully unsubscribed
});
cometd.disconnect().then(() => {
// This promise resolves when the client has succesfully disconnected
});
disconnect()
unsubscribes from all active subscriptions.
FAQs
CometD client for Node.js that adds support for promises
The npm package cometd-node-promise-client receives a total of 0 weekly downloads. As such, cometd-node-promise-client popularity was classified as not popular.
We found that cometd-node-promise-client 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.