openpaths
v0.0.1
Published
Downloads
1
Readme
openpaths
A Node.js client for the OpenPaths API.
Installation
npm install openpaths
Usage
var OpenPaths = require('openpaths').OpenPaths,
key = 'YOUR_KEY',
secret = 'YOUR_SECRET',
openPaths = new OpenPaths(key, secret);
openPaths.getLocations(function(error, data, response){
console.log(data);
});