0.0.2 • Published 11 years ago

node-septa v0.0.2

Weekly downloads
2
License
-
Repository
github
Last release
11 years ago

node-septa

A nodejs module that simplifies SEPTA's real-time data API. Uses data from http://www3.septa.org/hackathon.

find it on on NPM:

https://npmjs.org/package/node-septa

Installation

$ npm install node-septa

Usage

var septa = require('node-septa')();

var myBusRoute = 57;
septa.getBus(myBusRoute, function(data){
  //outputs a whole blob of json courtesy of SEPTA
  console.log(data);
});