Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@jacobmarshall/bugsnag-js
Advanced tools
A bunch of small re-implementations of the Bugsnag JS notifier for modern web apps
A bunch of small re-implementations of the Bugsnag JS notifier for modern web apps.
Please be warned, this module is currently unstable and untested. Please do not use in production unless you know the limitations.
This module is also useful for embedding into smaller libraries, frameworks, or SDKs which wish to report their own errors. It does not automatically notify when there are errors uncaught on the page, you are expected to bring that functionality along with you.
import { config, notify } from '@jacobmarshall/bugsnag-js';
config.apiKey = 'f48d2ed7b8e059aaf02dfda1528a1b8e'; // Add your own api key here
config.releaseStage = process.env.NODE_ENV;
config.user = {
// Put your user's sharable information here
};
config.endpoint = 'https://bugsnag.local:49000/js'; // If you're lucky enough to run Bugsnag enterprise
try {
throw new Error('Uh oh...');
} catch(err) {
notify(err, {
severity: 'info',
metaData: {
// Additional error metadata
}
});
}
These are some of the currently supported configuration options. Excuse the lack of documentation, it will be coming.
string
The notifier API key for the project you want the errors to be sent to.
string
The on-premise/enterprise js notifier URL. Looks something like https://bugsnag.local:49000/js
when you're testing.
string
The current release stage - these are some common release stages; beta
, production
, staging
, testing
, development
.
Object<string, *>
The global/default metaData attached to every error sent via the notify function. The notify function can override these defaults if the same key is used (top level, not deep).
string
The version number of your application. Used to help track when errors were introduced.
string
The default severity for all errors (unless overridden). This is set to error
by default. Can be one of these three; info
, warning
, error
.
MIT License
FAQs
A bunch of small re-implementations of the Bugsnag JS notifier for modern web apps
We found that @jacobmarshall/bugsnag-js demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.