A dynamic web application that displays live rail departures, TFL status updates, station information, and optional AI-driven features. This project integrates:
- TransportAPI for live train departures (Darwin data).
- TFL API for London transport line status.
- OpenAI (optional) to enhance station info and produce friendly text explanations.
- Features
- Requirements
- Installation
- Environment Variables
- Running the App
- Usage
- Directory Structure
- Roadmap
- License
-
Live Departures Board
- Shows upcoming trains, departure times, platforms, and countdown timers (via TransportAPI).
- Countdown changes color/animation as departure time approaches.
-
TFL Network Status
- Displays line status for Tube, Overground, DLR, Tram, and Elizabeth line.
- Color-coded for quick reference (Good service, Minor delays, Severe delays, etc.).
-
Station Search & Tooltip
- Change the station by clicking the three-letter code in the board title.
- A station search modal with predictive or manual input.
- Hover tooltip provides station details (fetched via an OpenAI prompt or your own data).
-
Timetable Popups
- Clicking a train destination shows its planned timetable (from TransportAPI / Darwin).
- Optional AI integration: friendly or expanded "reason for delay" or "route summary."
-
Extra Box (Ticker & Fullscreen)
- A floating box with large text for next departures, clock, and a scrolling ticker.
- Great for kiosk or big display usage.
-
Dark/Light Toggle & Responsive UI
- Quickly switch between dark & light modes.
- Responsive layout for desktop, tablet, and mobile.
- Node.js (14 or later recommended)
- npm or yarn
- A TransportAPI account (for live departures)
- A TFL API endpoint (free, no key required for TFL line statuses)
- OpenAI API key (optional, only if you want the AI station info or advanced text generation)
-
Clone the repository:
git clone https://github.com/<username>/train-departure-board.git cd train-departure-board
-
Install dependencies:
npm install
Create a .env file in the project root. Provide the following:
# For OpenAI (optional)
OPENAI_API_KEY=sk-<YOUR_KEY_HERE>
# Transport API Credentials
APP_ID=<YOUR_TRANSPORTAPI_APP_ID>
APP_KEY=<YOUR_TRANSPORTAPI_APP_KEY>
# Server Configuration
PORT=3000
Note: If you do not plan to use OpenAI, you can omit or leave it blank. The app will still run with just TransportAPI details.
-
Start the server:
node server.js
or with nodemon (if installed):
npx nodemon server.js
-
Open your browser at http://localhost:3000.
-
Viewing Departures
- The board defaults to station LST (London Liverpool Street) if no code is set.
- Real-time train data is fetched from TransportAPI’s
/v3/uk/train/station/:code/live.json
endpoint.
-
Changing Stations
- Click the station code (e.g., “LST”) in the heading.
- A search modal lets you type a new station code or name.
- If predictive search is enabled, results appear in a dropdown as you type.
-
Viewing Timetable Details
- Click a row’s destination to open a popup.
- It shows planned intermediate stops from Darwin (TransportAPI’s service timetable).
-
TFL Status
- A separate table displays line statuses.
- The color-coded lines indicate disruptions or closures.
-
Extra Box
- Click the “Hamburger” button → “Open Extra Box” to display a floating box with next trains, a clock, and a scrolling ticker.
train-departure-board/
│
├── data/
│ └── stations.json # (Optional) Station list for predictive search
│
├── public/ or root folder for static files
│ ├── index.html # The main HTML front-end
│ ├── style.css # Additional CSS
│ └── script.js # Additional JS (or inline in index.html)
│
├── .env # Environment variables
├── .gitignore
├── package.json
├── server.js # Main Express server
└── README.md # This file
-
Predictive Station Search
- Add
fuse.js
or an OpenAI-based station matching approach.
- Add
-
AI Summaries
- Use the OpenAI API to summarize frequent disruptions or “explain” delay reasons in plain English.
-
Alternative Journey Suggestions
- If a train is canceled, optionally show next best routes from TransportAPI’s journey endpoint.
-
Voice Assistant
- Implement speech synthesis on the front-end to read out the next departures.
-
Historical Stats
- Cache daily logs, feed them into OpenAI for “weekly performance” summaries.
This project is open-sourced under the MIT License. See the LICENSE
file for details.
Happy hacking! If you have any issues or questions, please open an issue on GitHub or submit a pull request.