tripcase
v0.1.1
Published
Unofficial TripCase API client.
Readme
tripcase 
An unofficial TripCase API client.
This uses the internal TripCase mobile API which may change without notice.
Install
$ npm install --save tripcaseUsage
var TripCase = require('tripcase');
var tripcase = new TripCase({
email: '[email protected]',
password: 'supersecret'
});
tripcase.login(function (err, res, body) {
if (err) throw err;
tripcase.getTrips(function (err, res, trips) {
if (err) throw err;
console.log('upcoming trips', trips);
});
});CLI
$ npm install --global tripcase$ tripcase username passwordLicense
MIT © madmod
