Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I create a Javascript page that will detect the user's internet speed and show it on the page? Something like your internet speed is ??/?? Kb/s.

share|improve this question
People tend to use flash for this sort of stuff - measure how long it takes to download a MB and upload a MB - but I wonder if some of the new "HTML5" apis could do that? – Jakub Hampl Apr 3 '11 at 13:06
you need to use a flash control who can give functionality to do this type of task.\ – user605334 Apr 3 '11 at 13:07
possible duplicate of Bandwidth utility using javascript – T.J. Crowder Apr 3 '11 at 13:10
@Jakub, @Ankit: People may use Flash for it, but you don't need to. No reason whatsoever you can't do it with JavaScript. – T.J. Crowder Apr 3 '11 at 13:31

3 Answers

up vote 8 down vote accepted

As I outline in this other answer here on StackOverflow, you can do this by timing the download of files of various sizes (start small, ramp up if the connection seems to allow it), ensuring through cache headers and such that the file is really being read from the remote server and not being retrieved from cache. This doesn't necessarily require that you have a server of your own (the files could be coming from S3 or similar), but you will need somewhere to get the files from in order to test connection speed.

That said, point-in-time bandwidth tests are notoriously unreliable, being as they are impacted by other items being downloaded in other windows, the speed of your server, links en route, etc., etc. But you can get a rough idea using this sort of technique.

share|improve this answer
How about upload speed? – Jakub Hampl Apr 3 '11 at 13:26
@Jakub: You'd have to have a place to upload to, but there's no reason you can't use the same technique for that. You could use data you generate on-the-fly or, of course, you could re-use some of the data you downloaded for the download test. – T.J. Crowder Apr 3 '11 at 13:30
So how would you know when did the upload complete? – Jakub Hampl Apr 3 '11 at 13:32
@Jakub: Any of several ways. If you do a form submission to a hidden iframe, for instance, you poll the iframe or a cookie for completion. If you use an XMLHttpRequest object to do the post, there's a callback for completion. – T.J. Crowder Apr 3 '11 at 13:38

It's possible to some extent but won't be really accurate, the idea is load image with a known file size then in its onload event measure how much time passed until that event was triggered, and divide this time in the image file size.

Example can be found here: Calculate speed using javascript

Test case applying the fix suggested there: http://jsfiddle.net/yahavbr/tEFpC/2/

Code is:

var imageAddr = "yourimage.jpg" + "?n=" + Math.random();
var startTime, endTime;
var downloadSize = [size here...];
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;
    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" );
}

Quick comparison with "real" speed test service showed small difference of 0.12 Mbps when using big picture.

share|improve this answer
Nice answer - with codez! – Jakub Hampl Apr 3 '11 at 13:33
@Jakub thanks, just fixed existing code and shared it. :-) – Shadow Wizard Apr 3 '11 at 13:35
+1 quite nice :) – gion_13 Nov 7 '11 at 9:55
+1 So great, thank you!! – mcpDESIGNS Dec 11 '12 at 16:52

Honestly. You can only test the speed of specific calls:

PseudoCode:

set timer1;
Make CallToServer;
set timer2;
timetaken = timer2 - timer1;
display timetaken.

the Javascript Date-object can help you here. But I'll rather have a link to something like http://www.speedtest.net/

share|improve this answer
You can of course, make a load of these calls and count the Bytes/bits the client recieves, but it will still be a guestimate at best. – Guidhouse Apr 3 '11 at 13:07
Why vote this down. please enlighten me so i can improve. – Guidhouse Apr 3 '11 at 13:09
+1 for making a sollution Well it's not sure that user's system look like Everything work sometime off. you need a point too that HTTPS request sometime fail because system have a invalid time. in this one case if time goes wrong you maybe have some awesome result. i hope you understand what i want to tell. – user605334 Apr 3 '11 at 13:10
5  
@guidhouse Probably because you're not answering the question. – Jakub Hampl Apr 3 '11 at 13:12
1  
You're talking about measuring JavaScript performance. The question is about available network bandwidth, however. (At least, that's how I read "Make Call" - like, a JavaScript function call. If you actually meant "Make A Call Back To A Server", well, that would then involve the network, but the pseudocode you give does not mention the complexities of doing that in the asynchronous browser JavaScript environment.) – Pointy Apr 3 '11 at 13:16
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.