schiphol

A wrapper around the Schiphol API.


License
MIT
Install
npm install schiphol@0.0.3

Documentation

Wrapper for schiphol api

https://developer.schiphol.nl

Experimental! Work in progress...

Example of how to run:

  import Schiphol from 'schiphol';
  // or
  const Schiphol = require('schiphol').default;
  const schiphol = new Schiphol('appId', 'appKey');

  schiphol.getFlights().then(r => {
    console.log(r.result);
  })