@busyorg/busyjs

1.0.1 • Public • Published

Busy.js

A lightweight JavaScript library for Busy

Install

npm install @busyorg/busyjs --save

Usage

var busy = require('@busyorg/busyjs');

// Init WebSocket client
var client = new busy.Client('wss://gtg.steem.house:8090');

// Get accounts
client.call('get_accounts', ['fabien'], function(err, result) {
  console.log(err, result);
});

Promises

You can also use Busy.js with promises by promisifying busy with bluebird as in:

var busy = require('@busyorg/busyjs');
bluebird.promisifyAll(busy.Client.prototype);

It'll add a Async to all busy functions (e.g. return client.callAsync().then())

// So instead of writing client.request('get_accounts', ['fabien'], cb); you have to write:
return client.callAsync('get_accounts', ['fabien']).then(function(result) {
  console.log(result); // => [{ id: 26921, name: 'fabien' ...]
});

License

MIT.

Readme

Keywords

none

Package Sidebar

Install

npm i @busyorg/busyjs

Weekly Downloads

1

Version

1.0.1

License

MIT

Unpacked Size

13.4 kB

Total Files

8

Last publish

Collaborators

  • sekhmet