node-stopwatch

A stopwatch utility for node.js apps

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
node-stopwatch
0.0.111 years ago11 years agoMinified + gzip package size for node-stopwatch in KB

Readme

node-stopwatch

Usage

``` js var Stopwatch = require("node-stopwatch").Stopwatch; var stopwatch = Stopwatch.create(); stopwatch.start(); / my long task here / console.log("ticks: " + stopwatch.elapsedTicks); console.log("milliseconds: " + stopwatch.elapsedMilliseconds); console.log("seconds: " + stopwatch.elapsed.seconds); console.log("minutes: " + stopwatch.elapsed.minutes); console.log("hours: " + stopwatch.elapsed.hours); //stop it now stopwatch.stop(); ```

Methods

``` start(); stop(); reset(); restart(); ```

Installation

Installing stopwacht

``` bash $ npm install node-stopwatch ```