0.0.1 • Published 6 years ago

metrotransit-nodetrip v0.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
6 years ago

MetroTransit-NodeTrip

A node module for interacting with the MetroTransit NexTrip API

Setup and Installation

$ npm install metrotransit-nodetrip --save

Getting Started

const MTNT = require("./metrotransit-nodetrip");
const API = new MTNT();

// Get all providers
API.getProviders()
.then(providers => {
  console.log(providers)
})
.catch(error => {
  console.log(error)
});

More examples here