Socket
Socket
Sign inDemoInstall

bugsnag-build-reporter

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bugsnag-build-reporter

A tool for reporting your application's builds to Bugsnag


Version published
Weekly downloads
148K
increased by1.27%
Maintainers
1
Weekly downloads
 
Created

What is bugsnag-build-reporter?

The `bugsnag-build-reporter` npm package is used to report build information to Bugsnag. This can help in tracking which builds are affected by specific errors and in correlating errors with specific code changes.

What are bugsnag-build-reporter's main functionalities?

Reporting a build

This feature allows you to report a build to Bugsnag. You need to provide your Bugsnag API key, the app version, release stage, builder name, and source control information. The function returns a promise that resolves when the build is reported successfully.

const reportBuild = require('bugsnag-build-reporter');

const options = {
  apiKey: 'YOUR_BUGSNAG_API_KEY',
  appVersion: '1.2.3',
  releaseStage: 'production',
  builderName: 'Jenkins',
  sourceControl: {
    provider: 'github',
    repository: 'https://github.com/your/repo',
    revision: 'abc123'
  }
};

reportBuild(options).then(() => {
  console.log('Build reported successfully');
}).catch(err => {
  console.error('Failed to report build', err);
});

Other packages similar to bugsnag-build-reporter

FAQs

Package last updated on 10 Jan 2018

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc