0.2.1 • Published 12 years ago

tracey v0.2.1

Weekly downloads
11
License
-
Repository
github
Last release
12 years ago

Tracey

Get a nice parsed stack trace from the calling location

Install

npm install tracey

Usage

Capturing the current call stack

var tracey = require('tracey');

var stack = tracey();
console.log(stack);

Or you can pass an exception to parse its stack frames

try {
    // .. something bad
} catch (ex) {
    var error_stack = tracey(ex);
}

Tracy returns an array of frame objects with the following properties:

  • path - the full file path of the executing code
  • line - the line number of the executing code
  • column - the column number of the executing code
  • func - the name of the function call
0.2.1

12 years ago

0.2.0

13 years ago

0.1.1

13 years ago

0.1.0

13 years ago