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.
|
|
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. |
|||||||||
|
|
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 Example can be found here: Calculate speed using javascript Test case applying the fix suggested there: http://jsfiddle.net/yahavbr/tEFpC/2/ Code is:
Quick comparison with "real" speed test service showed small difference of 0.12 Mbps when using big picture. |
|||||||||
|
|
|
Honestly. You can only test the speed of specific calls: PseudoCode:
the Javascript Date-object can help you here. But I'll rather have a link to something like http://www.speedtest.net/ |
|||||||||||||||
|