0.1.0 • Published 11 years ago

stack-formatted v0.1.0

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

stack-formatted

Beautifully formatted stack traces.

Install:

npm install stack-formatted

Usage:

require('stack-formatted');

console.log(new Error().stackFormatted);
// All error objects contain the stackFormatted property.

We use stack-json to produce the nicely formatted output. You can also use trace to get long stack trace in asynchronous code (mainly for debugging):

require('stack-formatted');
require('trace'); // load it after this module

setTimeout(function() {
  try {
    explode;
  } catch (error) {
    console.log(error.stackFormatted);
  }
}, 100);