20200403_Navigating the JavaScript Error handling Minefield by Ben Vinegar

This talk walks through the basics of global exception handling in JavaScript (onerror, onunhandledrejection), but as in all things in browser-land, it’s not straightforward. We cover how CORS impacts error collection, the impact of throwing “non-errors“, and how JavaScript engines product different stack traces for the same crash.
Back to Top