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

cent.js

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cent.js

Javascript library to communicate with Centrifugo HTTP API

  • 5.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
560
increased by9.59%
Maintainers
1
Weekly downloads
 
Created
Source

cent.js

Javascript library to communicate with Centrifugo HTTP API.

Installation

$ npm i cent.js

Usage

First see available API methods in documentation.

This library contains CentClient class to send messages to Centrifugo from your node-powered backend:

const {CentClient} = require('cent.js');

// Initialize client instance.
const client = new CentClient({
    url: 'http://localhost:8000/api',
    apiKey: 'XXX'
});

// Publish data into channel
const publishRes = await client.publish({
    channel: 'public:chat',
    data: {input: "test"}
}).catch(err => handleError()); // We throw error in case of unsuccessful
                                // response from Centrifugo or some other 
                                // internal errors.

// Other available methods
await client.unsubscribe({user: 'user_id', channel: 'channel'});
await client.disconnect({user: 'user_id'})
await client.getHistory({channel: 'channel'})
await client.getPresence({channel: 'channel'})
await client.getChannels()
await client.getInfo()
await client.removeHistory({channel: 'channel'})

Stay in touch

License

MIT © Alexey Filippov

Keywords

FAQs

Package last updated on 10 Jun 2024

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