All Projects → SystangoTechnologies → Crashalert

SystangoTechnologies / Crashalert

Licence: MIT license
Set of React Native components that allow reporting of the crashes in RN applications.

Programming Languages

javascript
184084 projects - #8 most used programming language
objective c
16641 projects - #2 most used programming language
java
68154 projects - #9 most used programming language
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Crashalert

bugsnag-java
Bugsnag error reporting for Java.
Stars: ✭ 51 (-25%)
Mutual labels:  crash-reporting, crash, crash-reporting-tool
Sherlock
Sherlock reports any crash that occurs in your application
Stars: ✭ 104 (+52.94%)
Mutual labels:  crash-reporting, crash-dump, crash-reporting-tool
Planb Android
A crash recovery library for Android. It allows tracking and handling crashes with different rules for debugging and production.
Stars: ✭ 29 (-57.35%)
Mutual labels:  crash-reporting, crash
Bugsnag Android
Bugsnag crash monitoring and reporting tool for Android apps
Stars: ✭ 990 (+1355.88%)
Mutual labels:  crash-reporting, crash
Bugsnag Go
Automatic panic monitoring for Go and Go web frameworks, like negroni, gin, and revel
Stars: ✭ 155 (+127.94%)
Mutual labels:  crash-reporting, crash
Countly Sdk Android
Countly Product Analytics Android SDK
Stars: ✭ 626 (+820.59%)
Mutual labels:  crash-reporting, crash
Rxjava2debug
RxJava 2.x extension to provide meaningful Stack Traces
Stars: ✭ 673 (+889.71%)
Mutual labels:  crash-reporting, crash
Xcrash
🔥 xCrash provides the Android app with the ability to capture java crash, native crash and ANR. No root permission or any system permissions are required.
Stars: ✭ 148 (+117.65%)
Mutual labels:  crash-reporting, crash
bugsnag-symfony
Bugsnag notifier for the Symfony PHP framework. Monitor and report errors in your Symfony apps.
Stars: ✭ 42 (-38.24%)
Mutual labels:  crash-reporting, crash-reporting-tool
elmah.io
ELMAH error logger for sending errors to elmah.io.
Stars: ✭ 31 (-54.41%)
Mutual labels:  crash-reporting, crash-reporting-tool
Xcrash
🔥 xCrash provides the Android app with the ability to capture java crash, native crash and ANR. No root permission or any system permissions are required.
Stars: ✭ 2,689 (+3854.41%)
Mutual labels:  crash-reporting, crash
Dianoia-app
Mobile (Ionic 3 - Angular 4) app about non-pharmaceutical activities and information for people with dementia.
Stars: ✭ 13 (-80.88%)
Mutual labels:  mobile-app, hybrid-apps
Bugsnag Php
Bugsnag error monitoring and crash reporting tool for PHP apps
Stars: ✭ 475 (+598.53%)
Mutual labels:  crash-reporting, crash
Impact
Crash capturing library for Apple platforms
Stars: ✭ 395 (+480.88%)
Mutual labels:  crash-reporting, crash
Bugsnag Laravel
Bugsnag notifier for the Laravel PHP framework. Monitor and report Laravel errors.
Stars: ✭ 746 (+997.06%)
Mutual labels:  crash-reporting, crash
Bugsnag React Native
Error monitoring and reporting tool for native exceptions and JS errors in React Native apps
Stars: ✭ 374 (+450%)
Mutual labels:  crash-reporting, crash
Bugsnag Python
Official bugsnag error monitoring and error reporting for django, flask, tornado and other python apps.
Stars: ✭ 69 (+1.47%)
Mutual labels:  crash-reporting, crash
Android-daily-read-tips
log for articles and info in android for every developer
Stars: ✭ 13 (-80.88%)
Mutual labels:  crash-reporting, mobile-app
CrashLogger
A dll injected into process to dump stack when crashing.
Stars: ✭ 19 (-72.06%)
Mutual labels:  crash-reporting, crash
Exceptionless
Exceptionless server and jobs
Stars: ✭ 2,107 (+2998.53%)
Mutual labels:  crash-reporting, crash-reporting-tool

Crashalert

As a mobile app developer, you’ve likely faced your own unique challenges in detecting, reproducing and debugging run-time crashes in React Native applications. Of course we need a crash analyzer tool that can track these crashes.

What is Crashalert?

This is a reporter that stores user action steps and runtime crashes info that you can analyze on Crashlyzer with a detailed specification of the tracked crashes. You no longer need to change existing code, you just need to import react-native-crashalert components in your js classes rather than react-native.

Supported Versions

Version 3.0.5 supports react-native >= 0.52.0

Platforms

Crashalert supports both the platforms android and iOS.

Installation

$ yarn react-native-crashalert or npm install --save react-native-crashalert

Demo

How to analyze the crashes?

To analyze your app crashes, you should follow Node server and Web client installation here

NOTE: Please follow the link here for the complete installation guide of Crashlyzer.

Basic usage

First of all, you'll need to add following code in your app.js or any top hierarchy component in constructor or componentWillMount() method. This is required configuration for crash reporter.

import { CrashReporter } from 'react-native-crashalert'

CrashReporter.setConfiguration({
hostURL: 'http://localhost:8000', // Replace this URL with your Server base url, in my case I have setup the node server on my machine itself using docker container
enableReporter: true  // pass false here if you don't want to enable reporting the crashes
});

NOTE: In case localhost url is not working in any platform android/iOS then you need to replace the value of hostURL to your machine's local IP Address in setConfiguration method.

Sample

You can simply try the following sample code :

// Import the component 'react-native-crashalert' module
import {Button} from 'react-native-crashalert';

// Within your render function
<Button style={styles.button} onPress={()=> this.pressLogin()}>
LOG IN
</Button>

// Adding your styles...
var styles = StyleSheet.create({
button: {
height:35,
backgroundColor: '#F57B20',
alignSelf:'center',
marginTop:10,
width:100
}

});

NOTE : Following are some additional props which might be used to pass manual information associated with the component otherwise the default information of the component will get passed.

Example:

The example app RNCrashExamples demonstrated the use of our crash reporter library. It is also having some additional features i.e. Eslint, Code-Push, React-Navigation and Redux are integrated. You need to add your code-push keys for android and iOS in their respective mapping files, you can follow the inline link of code-push for more details. The code-push is optional in the example app for debug mode.

The components which can be used:

  • Button
  • TouchableOpacity
  • TouchableHeighlight
  • TouchableWithoutFeedback
  • TouchableNativeFeedback

Additional props

  • searchText : To get the searched text on the TextInput component.(NOTE : While using TextInput component, you need to pass the text value in this field)
  • actionOn : To associate extra information related to the component used.
  • textStyle: To give a custom style of Text

Troubleshoot

If you experience the following issue in android while building the example app:

ENOENT: no such file or directory, open '/Users/macmini33/Desktop/demo/RNCrashExamples/android/app/build/intermediates/assets/debug/CodePushHash'

Fix: You need to create two (assets and debug) folders to the following path:

rootDir -> android -> app -> build -> intermediates -> assets -> debug

License

MIT

Contributors

Arpit Khandelwal, Akhilesh Mourya, Rituraj Mandloi

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].