0.0.1 • Published 12 years ago
debug-timer v0.0.1
debug-timer
time things. outputs to visionmedia/debug.
Installation
Install with component(1):
$ component install matthewmueller/debug-timerInstall with npm:
$ npm install debug-timerExample
var timer = require('debug-timer')('timer');
timer('js');
timer('css');
setTimeout(function() {
timer.end('js')
}, 1000);
setTimeout(function() {
timer.end('css')
}, 2000);API
Timer(namespace)
Assign timer to a namespace. In the code this means: require('debug')(namespace).
timer(key)
Start a timer with the given key.
timer.end(key)
End the timer with the given key.
timer.template
Assign a custom template. The first %s is the key, second %s is the elapsed time. Defaults to:
timer.template = %s: %s;License
MIT
0.0.1
12 years ago