2019-09-25 08:27:55 +02:00

2018-10-28 09:48:18 +01:00
2019-09-25 08:27:55 +02:00
# LibreSpeed
2016-03-04 12:48:09 +01:00
No Flash, No Java, No Websocket, No Bullshit.
2023-08-28 22:12:08 +02:00
This is a very lightweight speed test implemented in Javascript, using XMLHttpRequest and Web Workers.
2016-03-04 12:48:09 +01:00
## Try it
2023-08-28 22:12:08 +02:00
[Take a speed test ](https://librespeed.org )
2016-03-04 12:48:09 +01:00
## Compatibility
2023-11-26 12:46:27 +01:00
All modern browsers are supported: IE11, latest Edge, latest Chrome, latest Firefox, latest Safari.
2019-06-30 07:03:06 +02:00
Works with mobile versions too.
2016-03-04 12:48:09 +01:00
2017-08-24 15:28:28 +02:00
## Features
* Download
* Upload
* Ping
* Jitter
2019-06-30 07:03:06 +02:00
* IP Address, ISP, distance from server (optional)
2017-08-24 15:28:28 +02:00
* Telemetry (optional)
2018-08-06 18:15:32 +02:00
* Results sharing (optional)
2019-06-30 07:03:06 +02:00
* Multiple Points of Test (optional)
2017-08-24 15:28:28 +02:00
2023-11-26 12:46:27 +01:00

2018-08-06 20:36:20 +02:00
2019-06-30 07:03:06 +02:00
## Server requirements
* A reasonably fast web server with Apache 2 (nginx, IIS also supported)
2024-02-02 15:56:48 +01:00
* PHP 5.4 or newer (other backends also available)
2023-07-31 18:10:56 +12:00
* MySQL database to store test results (optional, Microsoft SQL Server, PostgreSQL and SQLite also supported)
2019-06-30 07:03:06 +02:00
* A fast! internet connection
2016-03-04 12:48:09 +01:00
2023-11-26 12:46:27 +01:00
## Installation
Assuming you have PHP installed, the installation steps are quite simple.
I set this up on a QNAP.
For this example, I am using a folder called **speedtest** in my web share area.
2024-02-02 15:56:48 +01:00
1. Choose one of the example-xxx.html files in `examples` folder as your index.html if the default index.html does not fit.
2023-11-26 12:46:27 +01:00
2. Add: speedtest.js, speedtest_worker.js, and favicon.ico to your speedtest folder.
3. Download all of the backend folder into speedtest/backend.
4. Download all of the results folder into speedtest/results.
5. Be sure your permissions allow execute (755).
6. Visit YOURSITE/speedtest/index.html and voila!
### Installation Video
There is a more in-depth installation video here:
2019-06-30 07:03:06 +02:00
* [Quick start installation guide for Ubuntu Server 19.04 ](https://fdossena.com/?p=speedtest/quickstart_v5_ubuntu.frag )
2018-08-15 13:57:47 +02:00
2019-09-11 19:01:40 +02:00
## Android app
2019-09-25 08:27:55 +02:00
A template to build an Android client for your LibreSpeed installation is available [here ](https://github.com/librespeed/speedtest-android ).
2019-09-11 19:01:40 +02:00
2024-01-31 22:46:46 +01:00
## CLI client
A command line client is available [here ](https://github.com/librespeed/speedtest-cli ).
2017-06-24 10:38:37 +02:00
## Docker
2023-11-26 12:46:27 +01:00
A docker image is available on [GitHub ](https://github.com/librespeed/speedtest/pkgs/container/speedtest ), check our [docker documentation ](doc_docker.md ) for more info about it.
2017-06-24 10:38:37 +02:00
2020-03-02 09:14:15 +01:00
## Go backend
2020-09-27 20:35:58 +02:00
A Go implementation is available in the [`speedtest-go` ](https://github.com/librespeed/speedtest-go ) repo, maintained by [Maddie Zhan ](https://github.com/maddie ).
2020-03-02 09:14:15 +01:00
2020-03-12 11:59:40 +01:00
## Node.js backend
A partial Node.js implementation is available in the `node` branch, developed by [dunklesToast ](https://github.com/dunklesToast ). It's not recommended to use at the moment.
2017-06-26 13:18:57 +02:00
## Donate
2023-11-26 12:46:27 +01:00
[](https://liberapay.com/fdossena/donate)
[Donate with PayPal ](https://www.paypal.me/sineisochronic )
2017-06-26 13:18:57 +02:00
2016-03-04 12:48:09 +01:00
## License
2022-01-04 08:55:27 +01:00
Copyright (C) 2016-2022 Federico Dossena
2016-03-04 12:48:09 +01:00
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see < https: / / www . gnu . org / licenses / lgpl > .