bugsnag-js
bugsnag-js copied to clipboard
JavaScript error handling tool for BugSnag. Monitor and report JavaScript bugs & errors.
### Description Trying to implement Bugsnag error logging for Remix server errors has been difficult. Knowing how to implement both client-side and server-side error logging in a Remix application by...
All major browsers support the [`SecurityPolicyViolationEvent`](https://developer.mozilla.org/en-US/docs/Web/API/SecurityPolicyViolationEvent#examples): ```js document.addEventListener("securitypolicyviolation", (e) => { console.log(e.blockedURI); console.log(e.violatedDirective); console.log(e.originalPolicy); }); ``` The apps I'm working on are very strict and security conscious. We serve all...
## Goal Bugsnag has a [plugin for AWS Lambda](https://docs.bugsnag.com/platforms/javascript/aws-lambda/) but until now there was no example app to demonstrate Bugsnag + AWS Lambda functionality. ## Design Adds Lambda functions to...
Hey! I attempted to use Bugsnag within a Cloudflare Worker: https://www.cloudflare.com/products/cloudflare-workers/. This is like the Service Workers API, but built to run at the CDN layer instead of in a...
### Expected behavior The expected behavior is bugsnag-js being able to be imported inside a service worker and catch errors occurred in it without having to listen the onerror event...
### Description It would be really useful if prebuilt binaries were available for the electron plugin since it will make possible for people that don't have access to multiple os...
## Goal The type definition for `client.notify` method implies that several types are acceptable. Which isn't exactly true. When using an `Error` type `client.notify` works as expected. When using a...
[](https://renovatebot.com) Welcome to [Renovate](https://togithub.com/renovatebot/renovate)! This is an onboarding PR to help you understand and configure settings before regular Pull Requests begin. 🚦 To activate Renovate, merge this Pull Request....
### Description [Apollo server](https://github.com/apollographql/apollo-server) is a popular framework and has a special way of handling errors. Would make sense if Bugsnag would have 1st party package handling Apollo server errors....
### Describe the bug My team is in the process of upgrading from Vue 2 to Vue 3: * in our Vue 2 app, each time a route changes we...