
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@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
The npm package @jacobmarshall/bugsnag-js receives a total of 1 weekly downloads. As such, @jacobmarshall/bugsnag-js popularity was classified as not popular.
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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.