Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lahdekorpi/speedtest

Tiny JavaScript Internet Connection Speed Test
https://github.com/lahdekorpi/speedtest

Last synced: 10 days ago
JSON representation

Tiny JavaScript Internet Connection Speed Test

Awesome Lists containing this project

README

        

speedtest
=========

Tiny JavaScript Internet Connection Speed Test

Usage
-----

```js
var st = new SpeedTest();

st.test({
onStart: function() {
console.log("Testing connection speed");
},
onEnd: function(results) {
alert("Speed: " + results.mbps + " Mbps");
console.log("Test took " + results.time.run + " seconds");
}
});
```