Socket
Socket
Sign inDemoInstall

@capraconsulting/sentry-utils-js

Package Overview
Dependencies
12
Maintainers
14
Versions
65
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @capraconsulting/sentry-utils-js

Utils for monitoring webapps with Sentry


Version published
Weekly downloads
1
decreased by-94.44%
Maintainers
14
Created
Weekly downloads
 

Readme

Source

Utils for monitoring web applications with Sentry

Usage

Install the dependency:

npm install --save-exact @capraconsulting/sentry-utils-js

Find your DSN in Sentry under "Settings" -> "Client Keys", to be used in the next snippet.

Initialize Sentry in your application. This should be done as early as possible, preferably before other imports, so that it can catch errors during the rest of initialization.

initSentry({
  // Options specified by Sentry, see type Sentry.BrowserOptions.
  options: {
    release: 'ec1c1c',
    environment: '...',
    dsn: '...',
  },
  buildTime: '2019-04-11T00:06+02:00', // Optional
});

The following is a full example of how this can be done:

import {
  initSentry,
  reportSentryNotEnabled,
} from "@capraconsulting/sentry-utils-js";
import { getConfig } from "./common/config";

const config = getConfig();

if (config.sentryDsn) {
  initSentry({
    options: {
      release: __BUILD_INFO__.commitHash,
      environment: config.sentryEnv,
      dsn: config.sentryDsn,
    },
    buildTime: __BUILD_INFO__.appBuildTime,
  });
} else {
  reportSentryNotEnabled();
}

Capture log events when needed:

import { captureError } from "@capraconsulting/sentry-utils-js";

if (...) {
  captureError("Something bad happened")
}

See types for additional capture methods and parameters that can be used.

Features

  • Throttles messages to prevent flooding Sentry
  • Provides default configuration for Sentry initialization
  • Provides more opiniated helpers to capture messages
  • Includes buildTime as tag if provided during initialization

Throttling

Evaluate and throttle before sending message to Sentry in case of excessive amount of failures. This will allow for a spike of 4-5 requests, decaying using mean lifetime of 1 minute.

Contributing

This project uses semantic release to automate releases and follows Git commit guidelines from the Angular project.

FAQs

Last updated on 26 Jan 2024

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc