Skip to content
This repository was archived by the owner on Jun 10, 2018. It is now read-only.

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Node.js Leftronic Package documentation

Instantiate the Leftronic client as follows:

var Leftronic = require('leftronic').createClient('my_api_key');

Then use the various push... functions as follows:

Leftronic.pushNumber({streamName: 'numberStream', 
		      number: 35,
		      suffix: '%'},
		      function(err, result) {
		          if (err) console.log(err);
			  console.log(result);
			  });

More docs coming soon.