speedsnitch

0.1.1 • Public • Published

speedsnitch

simple lightweight nodejs profiling tool

Getting Started

Install the module with: npm install speedsnitch

var Snitch = require('speedsnitch');
var snitch = new Snitch(); // "awesome"
 
 
 
snitch.next('lets see how fast some code runs');
/*some code*/
 
snitch.next('testing some other code');
/*some other code*/
 
snitch.stop();
/* break */
 
 
snitch.next('lets test last bit of code');
/*last bit of code code*/
 
 
console.log(snitch.summarize());
//gives you array of json objects with time in ms, description and line numbers, ordered by most expensive bit of code
 

Documentation

there's not much else to it really!

License

Copyright (c) 2012 Alan Clarke
Licensed under the MIT license.

/speedsnitch/

    Package Sidebar

    Install

    npm i speedsnitch

    Weekly Downloads

    5

    Version

    0.1.1

    License

    ISC

    Unpacked Size

    8.3 kB

    Total Files

    6

    Last publish

    Collaborators

    • alz