UNPKG

hongkong-trams

Version:

Node module to get info for Hong Kong Tramways, including fares, schedules and realtime next tram info.

12 lines (9 loc) 287 B
var HongKongTram = require('../index'); var tram = new HongKongTram(); console.log('Getting a list of all tram stops'); /** Download a list of all tram stops**/ tram.getTramStops().then(function(tramStops) { console.log(tramStops); }).catch(function(err) { console.error(err); });