Skip to content

Dank-del/easy-push-ts-client

Repository files navigation

easy-push typescript client SDK

Installation

npm install --save @easy-push/ts-client

Usage

import EasyPushClient from '@easy-push/ts-client';

const client = new EasyPushClient("https://easy-push-api.sayanbiswas.in", "meow", "uwu");
const channel = client.getChannel(5);

client.subscribeToChannel(5, (message) => {
    console.log(message);
});