Skip to content

Instantly share code, notes, and snippets.

@rishikeshjoshi
Forked from fedir/detectBandwidth.js
Created August 24, 2020 01:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rishikeshjoshi/ee6058e48e77dd32eddb5f1b73694c67 to your computer and use it in GitHub Desktop.
Save rishikeshjoshi/ee6058e48e77dd32eddb5f1b73694c67 to your computer and use it in GitHub Desktop.
var imageAddr = "http://www.tranquilmusic.ca/images/cats/Cat2.JPG" + "?n=" + Math.random();
var startTime, endTime;
var downloadSize = 5616998;
var download = new Image();
download.onload = function () {
endTime = (new Date()).getTime();
showResults();
}
startTime = (new Date()).getTime();
download.src = imageAddr;
function showResults() {
var duration = (endTime - startTime) / 1000; //Math.round()
var bitsLoaded = downloadSize * 8;
var speedBps = (bitsLoaded / duration).toFixed(2);
var speedKbps = (speedBps / 1024).toFixed(2);
var speedMbps = (speedKbps / 1024).toFixed(2);
alert("Your connection speed is: \n" +
speedBps + " bps\n" +
speedKbps + " kbps\n" +
speedMbps + " Mbps\n" );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment