plus.timer

1.0.2 • Public • Published

plus.timer

The simplest timer for debug npm install plus.timer --save

Example:

 
var timer = require('plus.timer').create('Timer #1');
 
timer.start();
 
setTimeout(function () {
    timer.log('Check point #1');
 
    setTimeout(function () {
        timer.log('Check point #2');
 
        setTimeout(function () {
            timer.stop();
        }, 300);
 
    }, 200);
 
}, 500);

Output:

[timer] Timer #1 started
[timer>] Timer #1 > Check point #1: 505 ms  | [timeline]: 505 ms
[timer>] Timer #1 > Check point #2: 206 ms  | [timeline]: 711 ms
[timer>] Timer #1 > stopping..: 305 ms  | [timeline]: 1016 ms
[timer total] Timer #1 total: 1016 ms

Have a nice debug :) plus one generation team

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.2
    477
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.2
    477
  • 1.0.1
    0
  • 1.0.0
    0

Package Sidebar

Install

npm i plus.timer

Weekly Downloads

355

Version

1.0.2

License

ISC

Last publish

Collaborators

  • slava.hatnuke