national-rail-data
v1.0.1
Published
A simple library to retrieve data from the national rail data portal service
Downloads
7
Readme
national-rail-data
Introduction
A promise based implementation to access the national rail's data soap based APIs.
Installation
npm install national-rail-data
Usage
In order to use this library you will first need to obtain a National Rail Data Portal account. The credentials are used to initialise this library:
const RailData = require('national-rail-data')
let railData = RailData('username', 'password')
You can then use library to retrieve the station information as follows:
let stations = await railData.getStations()