UNPKG

hongkong-trams

Version:

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

11 lines (9 loc) 281 B
var HongKongTram = require('../index'); var tram = new HongKongTram(); /** Get Service Updates **/ tram.getServiceUpdates().then(function(serviceUpdates) { console.log('Getting Service Updates'); console.log(serviceUpdates); }).catch(function(err) { console.error(err); });