tfl-api
v0.0.4
Published
Node.js wrapper for TFL (Transport for London) API
Readme
tfl-api
==========
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.
installation
npm install tfl-apiSetup
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;
