@ansaro/errors

Report errors to Sentry

Usage no npm install needed!

<script type="module">
  import ansaroErrors from 'https://cdn.skypack.dev/@ansaro/errors';
</script>

README

Errors

Report errors to Sentry

yarn add @ansaro/errors

Usage

Set environment variable SENTRY_DSN to your project's client key (DSN).

reportError is an asynchronous function that takes two arguments:

  1. Error the error to report
  2. options an object of optional settings
const { reportError } = require("@ansaro/errors");

async function() {
  try {
    ...
  } catch(ex) {
    await reportError(ex, {
      tags: {
        service: "name-of-service"
      }
    })
  }
}