stack-formatted
v0.1.0
Published
Beautifully formatted stack traces.
Downloads
1
Readme
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);