0.1.2 • Published 5 years ago

@cloudws/js-client-api v0.1.2

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

CloudWS javacsript client

Installation

npm install @cloudws/js-client-api

or

yarn add @cloudws/js-client-api

Getting started

import cloudWS from '@cloudws/js-client-api';

Subscription

const subscriptionId = cloudWS.sub(CHANNEL_ID)

Unsubscription

cloudWS.un(subscriptionId)

Example

import cloudWS from '@cloudws/js-client-api';

let subId;
subId = cloudWS.sub('h1b0DJmmV6mwWTzvbi91nlkbdVQRux2RNDU4TgdGk4U', (data) => {
    console.info(data);
    cloudWS.unsub(subId);
});