All Projects â†’ vadimdemedes â†’ ohcrash

vadimdemedes / ohcrash

Licence: other
💣 Microservice to report errors directly to your repo's GitHub Issues

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to ohcrash

Bugsnag Android Ndk
DEPRECATED - this project now lives at bugsnag/bugsnag-android
Stars: ✭ 42 (+147.06%)
Mutual labels:  crash-reporting, error-reporting
Raygun4net
Raygun provider for .NET
Stars: ✭ 107 (+529.41%)
Mutual labels:  crash-reporting, error-reporting
Bugsnag Node
[DEPRECATED] Please upgrade to our Universal JS notifier "@bugsnag/js" • https://github.com/bugsnag/bugsnag-js
Stars: ✭ 48 (+182.35%)
Mutual labels:  crash-reporting, error-reporting
elmah.io
ELMAH error logger for sending errors to elmah.io.
Stars: ✭ 31 (+82.35%)
Mutual labels:  crash-reporting, error-reporting
raygun4android
Android crash reporting provider for Raygun
Stars: ✭ 19 (+11.76%)
Mutual labels:  crash-reporting, error-reporting
Bugsnag Laravel
Bugsnag notifier for the Laravel PHP framework. Monitor and report Laravel errors.
Stars: ✭ 746 (+4288.24%)
Mutual labels:  crash-reporting, error-reporting
Ohbug
An open source application information monitoring platform.
Stars: ✭ 101 (+494.12%)
Mutual labels:  crash-reporting, error-reporting
bugsnag-symfony
Bugsnag notifier for the Symfony PHP framework. Monitor and report errors in your Symfony apps.
Stars: ✭ 42 (+147.06%)
Mutual labels:  crash-reporting, error-reporting
backtrace-unity
First-class error reporting for the Unity game engine.
Stars: ✭ 99 (+482.35%)
Mutual labels:  crash-reporting, error-reporting
Bugsnag Cocoa
Bugsnag crash reporting for iOS, macOS and tvOS apps
Stars: ✭ 167 (+882.35%)
Mutual labels:  crash-reporting, error-reporting
Bugsnag Js
Javascript error handling tool for Bugsnag. Monitor and report JavaScript bugs & errors.
Stars: ✭ 625 (+3576.47%)
Mutual labels:  crash-reporting, error-reporting
bugsnag-java
Bugsnag error reporting for Java.
Stars: ✭ 51 (+200%)
Mutual labels:  crash-reporting, error-reporting
Bugsnag Php
Bugsnag error monitoring and crash reporting tool for PHP apps
Stars: ✭ 475 (+2694.12%)
Mutual labels:  crash-reporting, error-reporting
Bugsnag Android
Bugsnag crash monitoring and reporting tool for Android apps
Stars: ✭ 990 (+5723.53%)
Mutual labels:  crash-reporting, error-reporting
Bugsnag React Native
Error monitoring and reporting tool for native exceptions and JS errors in React Native apps
Stars: ✭ 374 (+2100%)
Mutual labels:  crash-reporting, error-reporting
Bugsnag Python
Official bugsnag error monitoring and error reporting for django, flask, tornado and other python apps.
Stars: ✭ 69 (+305.88%)
Mutual labels:  crash-reporting, error-reporting
raygun4ruby
The Ruby & Ruby on Rails provider for Raygun
Stars: ✭ 37 (+117.65%)
Mutual labels:  crash-reporting, error-reporting
Bugsnag Go
Automatic panic monitoring for Go and Go web frameworks, like negroni, gin, and revel
Stars: ✭ 155 (+811.76%)
Mutual labels:  crash-reporting, error-reporting
Exceptionless
Exceptionless server and jobs
Stars: ✭ 2,107 (+12294.12%)
Mutual labels:  crash-reporting, error-reporting
raygun4py
Python provider for Raygun
Stars: ✭ 18 (+5.88%)
Mutual labels:  crash-reporting, error-reporting


OhCrash

Build Status

A microservice, which creates issues in a GitHub repository for each reported error. Think of it as barebones BugSnag, but errors are reported straight to GitHub Issues.

You can effortlessly deploy your own instance of OhCrash using now.

Deploy to now

Usage

OhCrash microservice requires a GitHub token, username and a repository name. You can obtain your personal access token here. Make sure to select public_repo scope to create issues in a public repository or repo for private repositories.

If you want to run OhCrash locally:

$ npm install --global ohcrash
$ export GITHUB_TOKEN="your token"
$ export GITHUB_USER="your username"
$ export GITHUB_REPO="target repository name"
$ ohcrash

ohcrash command accepts the same options as micro.

After OhCrash instance is up, use ohcrash-client module to start reporting errors! It catches uncaught exceptions and unhandled rejections out-of-the-box. Errors can also be reported manually, using a report() method.

const ohcrash = require('ohcrash-client').register('http://localhost:3000');

const err = new Error('Custom error handling');
ohcrash.report(err);

Learn more about the client at ohcrash-client repository.

Deployment

OhCrash can (and should 😄) be easily deployed to now by Zeit. Assuming you've got now all set up:

$ now -e GITHUB_TOKEN=token -e GITHUB_USER=user -e GITHUB_REPO=repo vadimdemedes/ohcrash

Alternatively, deploy ohcrash without even leaving the browser:

Deploy to now

Make sure to set a persistent alias using now alias for your deployment. Execute now help alias for information on how to do this. Later, use that URL as an endpoint for ohcrash-client.

require('ohcrash-client').register('https://my-ohcrash.now.sh');

License

MIT © Vadim Demedes

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