All Projects → netsyno → React Raven

netsyno / React Raven

Licence: mit
A simple React component for Sentry integration.

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Raven

Aspnetcore Webapi Course
Professional REST API design with ASP.NET Core 3.1 WebAPI
Stars: ✭ 323 (+2591.67%)
Mutual labels:  sentry
Sentry Go
Official Sentry SDK for Go
Stars: ✭ 415 (+3358.33%)
Mutual labels:  sentry
Cabin
🌲 Cabin is the best JavaScript and Node.js logging service and logging npm package
Stars: ✭ 622 (+5083.33%)
Mutual labels:  sentry
Docker Sentry
Docker Official Image packaging for Sentry
Stars: ✭ 340 (+2733.33%)
Mutual labels:  sentry
Onpremise
Sentry, feature-complete and packaged up for low-volume deployments and proofs-of-concept
Stars: ✭ 4,558 (+37883.33%)
Mutual labels:  sentry
Sentry Symfony
The official Symfony SDK for Sentry (sentry.io)
Stars: ✭ 515 (+4191.67%)
Mutual labels:  sentry
Webpack Sentry Plugin
Webpack plugin to upload source maps to Sentry
Stars: ✭ 299 (+2391.67%)
Mutual labels:  sentry
1c sentry
Конфигурация для отправки сообщений в Sentry
Stars: ✭ 23 (+91.67%)
Mutual labels:  sentry
Sentry Module
Sentry module for NuxtJS
Stars: ✭ 393 (+3175%)
Mutual labels:  sentry
Sentry Javascript
Official Sentry SDKs for JavaScript. We're hiring https://grnh.se/ca81c1701us
Stars: ✭ 6,012 (+50000%)
Mutual labels:  sentry
Sentry Kubernetes
Kubernetes event reporter for Sentry
Stars: ✭ 345 (+2775%)
Mutual labels:  sentry
Vscodethemes
Preview themes from the VSCode marketplace.
Stars: ✭ 374 (+3016.67%)
Mutual labels:  sentry
Redux Webpack Es6 Boilerplate
A starter project for modern React apps with Redux
Stars: ✭ 566 (+4616.67%)
Mutual labels:  sentry
Helm Monitor
Monitor K8S Helm release, rollback on metrics behavior (Prometheus, Elasticsearch, Sentry)
Stars: ✭ 332 (+2666.67%)
Mutual labels:  sentry
Sentry Java
A Sentry SDK for Java, Android and other JVM languages.
Stars: ✭ 628 (+5133.33%)
Mutual labels:  sentry
Raven For Redux
A Raven middleware for Redux
Stars: ✭ 300 (+2400%)
Mutual labels:  sentry
Sentry Dart
Sentry SDK for Dart and Flutter
Stars: ✭ 428 (+3466.67%)
Mutual labels:  sentry
Sentry Laravel
Laravel SDK for Sentry
Stars: ✭ 927 (+7625%)
Mutual labels:  sentry
Next Right Now
Flexible production-grade boilerplate with Next.js 10, Vercel and TypeScript. Includes multiple opt-in presets using Storybook, Airtable, GraphQL, Analytics, CSS-in-JS, Monitoring, End-to-end testing, Internationalization, CI/CD and SaaS B2B multi single-tenancy (monorepo) support
Stars: ✭ 671 (+5491.67%)
Mutual labels:  sentry
Sentry Cli
A command line utility to work with Sentry.
Stars: ✭ 567 (+4625%)
Mutual labels:  sentry

react-raven

A simple React component for Sentry integration.

Installing

npm install --save react-raven

Usage

  import React from 'react';
  import useRaven from 'react-raven';

  fuction Application(props) {
    const dsn = 'https://<key>@sentry.io/<project>';
    useRaven(dsn)
    return (
      <div>
        {'...your components...'}
      </div>
    );
  }

  export default Application;

Properties

dsn

required The dsn url to the sentry instance (more information).

config

optional The optional sentry configuration (more information).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].