@honeybadger-io/gatsby-plugin-honeybadger

Gatsby plugin to add Honeybadger error tracking to your site.

Usage no npm install needed!

<script type="module">
  import honeybadgerIoGatsbyPluginHoneybadger from 'https://cdn.skypack.dev/@honeybadger-io/gatsby-plugin-honeybadger';
</script>

README

@honeybadger-io/gatsby-plugin-honeybadger

Gatsby plugin to add Honeybadger error tracking to your site.

Install

npm install --save @honeybadger-io/gatsby-plugin-honeybadger

How to use

Add your API key in the plugin options in gatsby-config.js:

// gatsby-config.js
module.exports = {
  plugins: [
    resolve: `@honeybadger-io/gatsby-plugin-honeybadger`,
    options: {
      apiKey: 'YOUR_API_KEY',
      revision: `${Date.now()}`,
      assetsUrl: 'https://foobar.com/assets'
    }
  ]
}

Options

  • [apiKey] (String): the API key of your Honeybadger project.
  • [revision] (String): gatsby-plugin-honeybadger uses honeybadger-webpack to upload source maps to Honeybadger. options.revision needs to be unique as it is the identifier that connects your errors to your source maps.
  • [assetsURL] (String): The base URL to production assets (scheme://host/path). Used to grab source maps.