1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-04 05:10:05 +02:00

remove node_modules

This commit is contained in:
s2
2018-05-19 20:19:16 +02:00
parent 460c610361
commit a3f65f089b
1856 changed files with 0 additions and 309697 deletions

View File

@@ -1,38 +0,0 @@
# speedometer
Speed measurement in Javascript
```
npm install speedometer
```
## Usage
``` js
var speedometer = require('speedometer')
var fs = require('fs')
// Let's measure how fast we can read from /dev/urandom
var speed = speedometer()
var stream = fs.createReadStream('/dev/urandom')
stream.on('data', function(data) {
// Simply call speed with the amount of bytes transferred
var bytesPerSecond = speed(data.length)
console.log(bytesPerSecond+' bytes/second')
})
```
You can always get the current speed by calling `speed()`.
Per default `speedometer` uses a 5 second buffer.
To change this simply pass another value to the constructor
``` js
var speed = speedometer(20) // uses a 20s buffer instead
```
## License
MIT