A real-time football live score tracker with match events, statistics, and video highlights. Built with vanilla JavaScript and the Highlightly Football API.
- Get a free API key from highlightly.net/login
- Install dependencies:
npm install- Run the server:
$env:HIGHLIGHTLY_API_KEY="your_key_here"; node server.jsThe tracker has two modes controlled by the TRACKER_MODE environment variable.
All leagues (default)
Shows every football match for the selected day across 950+ leagues.
$env:HIGHLIGHTLY_API_KEY="your_key"; node server.jsWorld Cup only
Filters to World Cup 2026 matches only (June 11 to July 19, 2026).
$env:HIGHLIGHTLY_API_KEY="your_key"; $env:TRACKER_MODE="worldcup"; node server.js