skein-rpc
v0.3.1
Published
Client library for doing JSON-RPC over RabbitMQ/AMQP
Downloads
2
Readme
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)
});