0.3.1 • Published 5 years ago

skein-rpc v0.3.1

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

Skein

This is a JSON-RPC library for RabbitMQ and other AMQP compatible servers.

Usage

Installation should be simple with NPM:

npm install skein-rpc --save

Once installed, using it in a client application is simple:

const Skein = require('skein-rpc');

var client = Skein.client();

client.example().then((result) => {
  console.log(results)
});