Socket
Socket
Sign inDemoInstall

@sentry/integrations

Package Overview
Dependencies
Maintainers
10
Versions
385
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sentry/integrations

Pluggable integrations that can be used to enchance JS SDKs


Version published
Weekly downloads
3.6M
increased by0.01%
Maintainers
10
Weekly downloads
 
Created

What is @sentry/integrations?

The @sentry/integrations package provides a collection of official integrations for Sentry, which is an error tracking and performance monitoring platform. These integrations extend the functionality of Sentry by connecting it with other services and tools, enhancing error reporting, and providing additional context for debugging.

What are @sentry/integrations's main functionalities?

Redux Integration

This integration captures actions and state from the Redux library, providing a detailed snapshot of the application state at the time of an error.

import * as Sentry from '@sentry/react';
import { Integrations } from '@sentry/integrations';

Sentry.init({
  dsn: 'YOUR_DSN',
  integrations: [new Integrations.BrowserTracing(), new Integrations.Redux({})]
});

Vue Integration

This integration hooks into the Vue.js framework to capture errors and provide enhanced error reporting with additional context specific to Vue applications.

import * as Sentry from '@sentry/vue';
import { Integrations } from '@sentry/integrations';

Sentry.init({
  dsn: 'YOUR_DSN',
  integrations: [new Integrations.BrowserTracing()],
  Vue: Vue
});

Dedupe Integration

The Dedupe integration helps prevent sending duplicate error events to Sentry. It is useful for reducing noise and conserving event quota.

import * as Sentry from '@sentry/browser';
import { Dedupe } from '@sentry/integrations';

Sentry.init({
  dsn: 'YOUR_DSN',
  integrations: [new Dedupe()]
});

Other packages similar to @sentry/integrations

FAQs

Package last updated on 23 Jul 2019

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