lightray
v0.1.0
Published
Client library to support Lightray PoWaaS
Downloads
5
Readme
This library is used to embed the lightray.io API.
Installation
Usage
npm install --save lightray
Usage
const lightray = require('lightray');
lightray('Hello', 'World', (err, resp) => {
if (err) {
console.log(err);
}
console.log(resp);
});