stack-json
v0.1.3
Published
Stack traces in JSON format.
Downloads
5
Readme
stack-json
Stack traces in JSON format.
Install:
npm install stack-json
Usage:
require('stack-json');
console.log(new Error().stackJSON);
// All error objects contain the stackJSON property.
The property is lazy-loaded and as such does not harm the performance of your production code. However generating the JSON stack trace can take a while (not very long, but it is looking up files synchronously, if not already cached).
Since the module use stack-chain to do the stack trace magic, you can use it together with other modules that provides stack trace features. For example you can use it with trace, which gives you a nice long stack trace in asynchronous code (mainly when debugging):
require('stack-json');
require('trace'); // load it after this module
setTimeout(function() {
try {
explode;
} catch (error) {
console.log(error.stackJSON);
}
}, 100);