TraceKit
TraceKit copied to clipboard
Attempts to create stack traces for unhandled JavaScript exceptions in all major browsers.
Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @OlafConijn in...
I've got an error like in title. It's in function computeStackTrace in last return when tries to get ex.name. It is called by function traceKitWindowOnUnhandledRejection (and I don't have more...
Hi, I face the issue of all chrome extension errors captured in my code. we don't want that kind of error, Is any flag disabled for this kind of error?
``` import * as TraceKit from 'tracekit'; TraceKit.report.subscribe(tracekitErrorHandler) ``` I added tracekit in my ts file. I try to run that file, I got error like below ``` report is...
By reviewing TraceKit code, I found an issue where the stack trace computation fails in certain condition. Keep in mind that I didn't observe an actual error matching this condition....
Hi, on running ES linter with browser configurations for tracekit.js file found a few issues , can we may be configure a linter in git actions to fix these issues...
pls see images.  
@niemyjski can we use [xhr onerror](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequestEventTarget/onerror) to capture network errors and also maybe add user breadcrumbs like click action, page load , xhr calls, console warning messages etc ?
I get the following error in chrome when loadSource is called: ``` Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user's experience....
Right now as far as I can tell the stack is a very informative javascript object whereas in native exceptions - it is a string. I think it will be...