evw-ffs
v2.0.2
Published
EVW flight forecast service integration
Downloads
6
Readme
EVW flight forecast service integration
Run
To spin up a stub version of the evw flight forecast service:
node ./node_modules/.bin/evw-ffs
Query
To query either the stub or the real service:
const flightLookup = require('evw-ffs').flightLookup;
flightLookup
.findFlight('ku101', '2017-06-09')
.then(data => {
// do what you want with flight data
}).catch(error => {
console.error('oh noes', error);
});