==========
A new Transport for London API Module for Node.js, because others are incomplete and I wanted a chance to create a node module from start to finish.
npm install tfl-api
-
Create a config file in the module folder called config.js.
-
Create API credentials at the TFL site: https://tfl.gov.uk/info-for/open-data-users/
-
[optional] Test your credentials and find the main TFL API docs here: https://api.tfl.gov.uk/
-
Go back to the config.js file, add in the following:
var config = {};
config.tfl = { appId: 'YOUR_APP_ID', appKey: 'YOUR_APP_KEY' };
module.exports = config;