Analysis updated 2026-06-24
Host an internal speed test page for an ISP or office network
Run a Docker container that exposes a private speedtest endpoint on a LAN
Embed a small download and upload check into a status or monitoring dashboard
Compare multiple server locations from one branded test page
| librespeed/speedtest | automerge/automerge-classic | browserify/browserify | |
|---|---|---|---|
| Stars | 14,692 | 14,705 | 14,718 |
| Language | JavaScript | JavaScript | JavaScript |
| Setup difficulty | moderate | easy | easy |
| Complexity | 2/5 | 4/5 | 2/5 |
| Audience | ops devops | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Needs a working PHP web server, and accurate results require enough bandwidth on the host since the test pulls real bytes through it.
LibreSpeed is a self-hosted internet speed test that runs in a web browser. Most people know speed tests as the websites that show how fast their download and upload connection is. LibreSpeed is the code behind one of those websites, packaged so that anyone can put it on their own web server. The README points to librespeed.org as a public demo. The test is written in JavaScript and uses standard browser features called XMLHttpRequest and Web Workers, with no Flash, Java, or WebSocket dependency. It works in modern desktop and mobile browsers including IE11, Edge, Chrome, Firefox, and Safari. The measurements it can show are download speed, upload speed, ping, jitter, and optionally the visitor's IP address, internet provider, and distance from the test server. There are also optional features for storing results, sharing them, and testing against multiple server locations. To install LibreSpeed you need a web server such as Apache, nginx, or IIS, PHP 5.4 or newer, and optionally a database like MariaDB, MySQL, SQL Server, PostgreSQL, or SQLite to keep test history. The README lists the files to copy into the web root, including index.html, the speedtest scripts, the backend folder, and the frontend assets for the modern UI. A short walkthrough video for Debian 12 is linked, and a Docker image is published and rebuilt weekly to keep the ISP database and PHP patches current. Around the main project there is an Android template, a command line client, a .NET client library, and alternative server implementations in Go and Rust, each in its own repository. The project is by Federico Dossena and released under the GNU Lesser General Public License.
Self-hosted internet speed test that runs in a browser using XHR and Web Workers, measuring download, upload, ping, and jitter. Installs on Apache or nginx with PHP and an optional database for history.
Mainly JavaScript. The stack also includes JavaScript, PHP, Docker.
LGPL license: you can use and ship it, including in closed source apps, but changes to the library itself must be shared back under the same license.
Setup difficulty is rated moderate, with roughly 30min to a first successful run.
Mainly ops devops.
This repo across BitVibe Labs
Verify against the repo before relying on details.