@arcblock/event-client

v1.7.1
Helper library to attach a websocket server to any express app
forge blockchain arcblock sdk nodejs

event-client

styled with prettier docs Gitter

Table of Contents

Install

npm install @arcblock/event-client
// or
yarn add @arcblock/event-client

Usage

const EventClient = require('@arcblock/event-client');

const endpoint = 'ws://192.168.43.94:3030';

(async () => {
  const hub = new EventClient(endpoint);
  const subscription = await hub.subscribe('auth', '2c6e68c5');
  const subscription = await hub.subscribe('swap', 'abcd1234');
  subscription.on('data', data => console.log('token.update', data));
})();
npm i @arcblock/event-client

Metadata

Downloads