New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

pubq

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pubq

PUBQ JavaScript SDK

latest
Source
npmnpm
Version
1.0.20
Version published
Maintainers
1
Created
Source

PUBQ JavaScript SDK

PUBQ is a pub/sub channels cloud and this is the official JavaScript client library including both real-time and REST interfaces.

To meet PUBQ and see more info and examples, please read the documentation.

Getting Started

Follow these steps to just start building with PUBQ in JavaScript or see the Quickstart guide which covers more programming languages.

Install with package manager

Use any package manager like npm or yarn to install the JavaScript SDK.

Npm:

npm i pubq

Yarn:

yarn add pubq

Import as ES module:

import { Pubq } from "pubq";

Import from CDN:

<script src="https://cdn.jsdelivr.net/npm/pubq@latest/build/browser/pubq.min.js"></script>

Interacting with PUBQ

Get your application API key from PUBQ dashboard by creating a new app or use existing one.

Connect to PUBQ:

const realtime = new Pubq.RealTime({ key: "YOUR_API_KEY" });

Subscribe to a channel and listen for any data publishing to receive:

let channel = realtime.channels.get("my-channel");
channel.subscribe((message: any) => {
    console.log({ message });
});

Publish a message:

channel.publish("Hello!");

Publish a message with REST interface:

const rest = new Pubq.REST({ key: "YOUR_API_KEY" });

let channel = rest.channels.get("my-channel");

channel.publish("Hello!");

Development

Please, read the contribution guide.

Install

git clone git@github.com:pubqio/pubq-js.git
cd ./pubq-js/
npm i

Build

To build umd bundles, run:

npm run build

Keywords

pubq

FAQs

Package last updated on 31 May 2025

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