timeperiod

0.0.2 • Public • Published

timeperiod

Experiments in timing and profiling Node.js functions.

This project was created to help with fast debugging and lightweight profiling of Node.js applications. Track down your slowest functions or apandoned callbacks quickly.

!!!Experimental!!! - Use for debugging only

Functions####

Installing##

npm install timeperiod

Include##

This module will extend the Function prototype. You only need to include once at the beginning of your application or you can include and use the export object directly.

var period = require('timeperiod');

  //period.periodSync()
  //period.periodAsync();
  //period.periodUntil();

Basic Usage##

The core functions can be used at time of execution or their constructors can be used to return a new function can can be called directly or passed as arguments. The constructor is useful in conjunction with flow control libraries like Aync

Attach to a function at runtime:

example:

function hello() {
    console.log("My Name is Node. Nice to meet you.");
}

hello.period();

output:

My Name is Node. Nice to meet you.

e70727e8-32cd-46f1-b195-1e6c20b3fadc hello: 1ms

Construct a new function:

example:

function hello() {
    console.log("My Name is Node. Nice to meet you.");
}

var newHello = new Function.period(hello);
newHello();

output:

My Name is Node. Nice to meet you.

e70727e8-32cd-46f1-b195-1e6c20b3fadc hello: 1ms

Async: functions that rely on callbacks can be called in the same manner or called diectly with periodAsync if the auto-detection is not working.

Attach to a function at runtime:

example:

function waitHello(callback) {
    setTimeout(function() {
        console.log("My Name is Node. Nice to meet you.");
        return callback();
    }, 1000);
}

waitHello.period(function(){
    console.log("Done");
});

output:

My Name is Node. Nice to meet you.

e70727e8-32cd-46f1-b195-1e6c20b3fadc waitHello: 1002ms

Done

Construct a new function:

example:

function waitHello(callback) {
    setTimeout(function() {
        console.log("My Name is Node. Nice to meet you.");
        return callback();
    }, 1000);
}

var newWaitHello = new Function.period(waitHello);
newWaitHello(function(){
    console.log("Done");
});

output:

My Name is Node. Nice to meet you.

e70727e8-32cd-46f1-b195-1e6c20b3fadc waitHello: 1002ms

Done

.period(*)

Will attempt to automatically detect whether function is a sync or async call and attach to either the return or callback.

.periodSync(*)

Call a function explicitly profiling the time until return

.periodAsync(*)

Call a function explicitly profiling the time until callback. The callback must be the last argument

.periodUntil(func, label)

Will return a function and calculate the time from construction until the function is called. Does not matter if function is Sync or Async. Useful for attaching in a flow control function. Optionally takes a label as the second argument.

Example use with Async:

async.series([
    function workFunction(doneWaiting) {
        doneWaiting = Function.periodUntil(doneWaiting, 'First Async Call');

        //Do some work
        var i = 0;
        while(i<=100) { i++; }

        //Set a timer
        setTimeout(function(){
            return doneWaiting();
        }, 2000);
    }
],
function(err) {
    if(!err) console.log('Done without errors');
});

output:

e70727e8-32cd-46f1-b195-1e6c20b3fadc First Async Call (wait): 2001ms

Done without errors

Bitdeli Badge

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.2
    0
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.2
    0
  • 0.0.1
    0

Package Sidebar

Install

npm i timeperiod

Weekly Downloads

0

Version

0.0.2

License

MIT

Last publish

Collaborators

  • esopian