stacktrace-js
Advanced tools
Changelog
v2.0.0
ES6 code is now parsed and enhanced!
StackFrames returned are now able to report on whether a function call was a Constructor
, native
code, or eval
code.
The community has voted to change the license of the project to the MIT License
Changelog
v1.3.0
Stacktrace.getSync()
gets a stack trace, synchronously. It does not attempt to map sources or guess function names, because those typically require network requests.Changelog
v1.2.0
StackTrace.report
now accepts an error message argument, and will add a message: "given thing"
to the JSON payload if it is provided.Changelog
v1.1.0
Updated error-stack-parser to v1.3 which parses eval stack entries in a better way and fixes a bunch of bugs.
Updated stacktrace-gps. Now reuses the same instance to avoid duplicate requests for the same resource by default.
JSCS and automated PR testing have been implemented to ensure consistent styles and quick feedback.
Possibly breaking changes: ErrorStackParser now provides it's own polyfill for
Array.map
andArray.filter
.eval
information is will display differently in stack traces.