Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 428 Bytes

README.md

File metadata and controls

20 lines (12 loc) · 428 Bytes

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)
});