B5C8E2 / Speed-Test

Pure HTML5 Network Performance Estimation Tool. OpenSpeedTest use XMLHttpRequest (XHR), HTML, CSS, JS, & SVG For this network performance estimation tool. I started this project in 2011 and moved to OpenSpeedTest.com dedicated Project/Domain Name in 2013.

Home Page:https://openspeedtest.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

OpenSpeedTest™️ - Pure HTML5 Network Performance Estimation Tool.

Hi! I'm Vishnu the one who developed OpenSpeedTest™️. OpenSpeedTest use XMLHttpRequest (XHR), HTML, CSS, JS, & SVG For this network performance estimation tool. I started this project in 2011 and moved to OpenSpeedTest.com dedicated Project/Domain Name in 2013.

Secure by Design.

OpenSpeedTest contains Only "STATIC" Files like HTML,CSS & JS. So you don't need to worry about Security Updates or Hidden Exploits that may compromise your secure environments.

Lightweight, High Performance.

OpenSpeedTest is written in Pure JavaScript. No Third-Party frameworks or libraries were used. SpeedTest script file size is under 7kB gzip. The unexpected side effect of using Pure JavaScript is High Performance.

Run a speed test from Any Device.

OpenSpeedTest will run on Any Web Browser that is IE10 or new.

Ready for Any Display Size and Resolution.

OpenSpeedTest User interface is written in SVG.

You can Create Your Own SpeedTest Server using OpenSpeedTest.

Server Requirements :

Nginx, Apache, IIS, Express, or Any Web server that supports HTTP/1.1.

  • Accept, GET, POST, HEAD & OPTIONS, Response 200 OK.
  • Accept, POST to Static Files, Response 200 OK.
  • Timeout greater than 60 seconds.
  • Disable Access logs for Increasing server performance.
  • Improve Time to First Byte (TTFB)
  • Follow our Nginx Config.

Or, You can use OpenSpeedTest-Server.

OpenSpeedTest-Server is available as Docker Image, Windows Mac, Linux, Android, & iOS Applications.

New features:

  1. Stress Test.

To enable stress pass 'stress' keyword as a URL parameter.

http://192.168.1.5?stress=low

After stress keyword you should give a value, number of seconds or preset values such as "low", "medium" ,"high" ,"veryhigh" ,"extreem". Will run a speed test for 300,600,900,1800,3600 seconds respectively. Or you can specify eg:5000 directly without any preset keywords.

http://192.168.1.5?stress=5000
  1. Start a Speedtest Automatically.

Starts a speed test automatically

http://192.168.1.5?run

Start a speed test automatically after few seconds

http://192.168.1.5?run=10

You can pass multiple keywords

http://192.168.1.5?run&stress=300

This will start a speed test immediately and run for 300 seconds in each direction. That is 300 seconds for download and 300 seconds for upload.

  1. Save results to a Database

Edit Index.html

var saveData = true;
var saveDataURL = "//yourDatabase.Server.com:4500/save?data=";
  1. Add multiple servers (Choose one with least latency automatically)

Edit Index.html

 var openSpeedTestServerList = [
    {"ServerName":"Home-Earth", "Download":"/downloading", "Upload":"/upload", "ServerIcon":"DefaultIcon"},
    {"ServerName":"Home-Mars", "Download":"/downloading", "Upload":"/upload", "ServerIcon":"DefaultIcon"},
    {"ServerName":"Home-Moon", "Download":"/downloading", "Upload":"/upload", "ServerIcon":"DefaultIcon"}
    ];
  1. Disable or change Overhead Compensation factor.
http://192.168.1.5?clean

Overhead Compensation factor, This is browser based test, Many Unknowns. Currently 4%. That is within the margin of error. you can pass "clean" as a URL parameter and reset it to Zero or set anything under 5%, for that pass 1 for 1% , 2 = 2%, 3 =3% & 4=4% , "clean" will not accept values above 5, so Compensation is limited to maximum 4%

Take a look at index.html, you can set a custom ping sample size, threads, upload data size, initial dlDuration etc.

Tested up to 10Gbps on real NIC and up to 30Gbps on Virtual NIC. You can run a speed test from any device with a Web Browser that is IE10 or new. That means you can test your network speed from your Smart TV, Console, etc. No additional plugins or software required.

TLDR: If you need to test 10Gbps or more. You may need to use the latest hardware. Use Safari or Chrome in Private Window or Incognito Window.

For testing 10GbE or more, you will need to use the latest hardware. I used M1 MacMini with Built-in 10GbE and a Linux Machine with AMD Ryzen™ 9 3900XT. Safari was the fastest browser when I tested it. Chrome and Chromium Edge can handle 10Gbps or more on macOS and Linux. You can test more than 10Gbps with Chrome or Safari on M1 MacMini or newer hardware. Or on a Linux Machine with Chrome or Chromium browser using a 3900XT or newer Processor. Up to 2.5 to 3.6 Gbps can be tested on almost all popular browsers and devices. Windows max limit was around 8.5 Gbps for download and 9.4Gbps for upload. Tested on Edge and Chrome. Use Private Window or Incognito Window if you found unusual test results. Probably some Extensions are slowing the speed test process. This tool can be used to check the browser performance and impact of Extensions on your browsing experience.

10Gbps Network Speed Test!

Self-hosted (On-Premise) / (Docker Image/Source Code)

You have two options here. If you need a custom deployment, use our source code along with a web server of your choice. I prefer Nginx, and you can find my Nginx Configuration here. Or you can use our docker image. You can deploy it on your LAN/WAN without an active internet connection.

This is docker implementation using nginxinc/nginx-unprivileged:stable-alpine. uses significantly fewer resources.

Docker install instructions:

Install Docker and run the following command!

  1. docker run --restart=unless-stopped \ 
    --name openspeedtest -d \ #set name and Run container in background and print container ID
    -p 3000:3000 \ #Host-port:container-port for http
    -p 3001:3001 \ #Host-port:container-port for https
    openspeedtest/latest #Image
  2. Now open your browser and direct it to:

    A: For HTTP use: http://YOUR-SERVER-IP:3000

    B: For HTTPS use: https://YOUR-SERVER-IP:3001

How to use your own SSL Certificate?

You can mount a folder with your own SSL certificate to this docker container by adding the following line to the above command.

-v /${PATH-TO-YOUR-OWN-SSL-CERTIFICATE}:/etc/ssl/

The folder needs to contain:

  • nginx.crt
  • nginx.key

I am adding a folder with nginx.crt and nginx.key from my desktop by using the following command.

docker run -v /Users/vishnu/Desktop/docker/:/etc/ssl/ \ #Added ssl cert.
--restart=unless-stopped --name openspeedtest -d -p 3000:3000 -p 3001:3001 openspeedtest/latest

Docker images run better on Linux Platforms, including your NAS. But if you install docker on macOS or Windows, you may see poor performance. I asked this on Docker forums, and they told me macOS and Windows support is for Development purposes only. For Production, you need to use any Linux Platform.

The same Story goes for Windows NGINX. Nginx uses only one worker even if you specify n number of worker processes. They will show in Task Manager, but the system will only use one. I got this information directly from the Nginx website.

Speedtest for Home/Office LAN! [Easy to use Standalone Application for Desktop]

An application for launching a quick speed test server. Without using any commands! First, test your local network speed before pointing fingers towards your ISP for a slow and sluggish internet experience. Introducing Network Speed Test Server for Windows, Mac & Linux!. For large-scale deployments, docker image and source code are available. This application is good enough for testing speeds up to 15 to 20 Gbps. Download Now!.

How is this useful for me?

You can run OpenSpeedTest Server in your Home/Office/Cloud. So that you or employees who work from home can run a speed test to your office and make sure they can run everything smoothly.

Choosing between ISP1 & ISP2.

Sometimes your ISP2 is Faster than ISP1 when you test your speed on popular speed test sites. But when you connect to your Home/Office/Cloud, that slower connection may perform better. The only way to find out is to run a speed test against your infrastructure.

Troubleshooting network issues.

It is common even when your Internet connection is working fine, but some of the devices in your network may experience trouble getting decent connectivity to the internet. The issue might be the wrong VLAN ID or Faulty Switch. If you run a Local network speed test, you can find and fix these issues easily.

Before you add a repeater.

Most repeaters will reduce your network speed by 50%, so if you put it far away, it will perform worst, and if you put it too close, you will not get enough coverage if you run a Local Network speed test. Depending on the application requirements, you can decide exactly where you need to put your repeater.

Browsing experience.

Many useful browser extensions are out there that we all know and love. But some of them are really slowing you down for few seconds per page you visit. You may see good performance when you test your network performance via File Transfer or Command-line utilities, but you may experience poor performance when browsing the internet. This is due to a bad browser configuration that including unwanted extensions installed. From my experience, only keep the one you are going to use every single day. Extension that you may use once in a while should be removed or disabled for maximum performance. If you see poor performance, try OpenSpeedTest from Private Window or Incognito Window. This tool can be used to check the browser performance and impact of Extensions on your browsing experience.

No client-side software or plugin is required. You can run a network speed test from any device with a web browser that is IE10 or new.

Get it from the Snap Store English badge Download on the Mac App Store

Download OpenSpeedTest-Server V2.1

1Gbps Network Speed Test using OpenSpeedTest | Brave VS Chrome VS Firefox VS Internet Explorer VS Opera VS Chrome Dev VS Microsoft Edge VS Canary

Brave VS Chrome VS Firefox VS Internet Explorer VS Opera VS Chrome Dev VS Microsoft Edge VS Canary for 1Gbps Network Speed. !

©Copyright 2013-2022 by OpenSpeedTest.com. All Rights Reserved.

Share — copy and redistribute the material in any medium or format for any purpose, even commercially.

Read full license terms @ http://go.openspeedtest.com/License

Like this Project? Please Donate NOW & Keep us Alive -> https://go.openspeedtest.com/Donate

Official Website : https://OpenSpeedTest.COM | Email: support@openspeedtest.com

Developed by : Vishnu | https://Vishnu.Pro | Email : me@vishnu.pro

If you have any Questions, ideas or Comments Please Send it via -> https://go.openspeedtest.com/SendMessage

About

Pure HTML5 Network Performance Estimation Tool. OpenSpeedTest use XMLHttpRequest (XHR), HTML, CSS, JS, & SVG For this network performance estimation tool. I started this project in 2011 and moved to OpenSpeedTest.com dedicated Project/Domain Name in 2013.

https://openspeedtest.com

License:Other


Languages

Language:HTML 81.7%Language:CSS 18.3%