Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/lahdekorpi/speedtest
- Owner: lahdekorpi
- License: mit
- Created: 2014-04-29T16:48:04.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-04-29T16:56:13.000Z (over 10 years ago)
- Last Synced: 2024-11-12T14:24:43.278Z (about 2 months ago)
- Size: 133 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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");
}
});
```