All Projects → bugsnag → bugsnag-vue

bugsnag / bugsnag-vue

Licence: MIT license
[DEPRECATED] This package now lives within the monorepo for our Universal JS notifier "@bugsnag/js" • https://github.com/bugsnag/bugsnag-js

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to bugsnag-vue

bugsnag-java
Bugsnag error reporting for Java.
Stars: ✭ 51 (+96.15%)
Mutual labels:  debugging, bugsnag, error-monitoring, error-handling, debug, error-reporting, debugging-tool
Bugsnag Node
[DEPRECATED] Please upgrade to our Universal JS notifier "@bugsnag/js" • https://github.com/bugsnag/bugsnag-js
Stars: ✭ 48 (+84.62%)
Mutual labels:  debugging, error-monitoring, error-handling, debug, error-reporting, debugging-tool
Bugsnag Ruby
Bugsnag error monitoring & reporting software for rails, sinatra, rack and ruby
Stars: ✭ 211 (+711.54%)
Mutual labels:  debugging, error-monitoring, error-handling, debug, error-reporting, debugging-tool
Bugsnag Laravel
Bugsnag notifier for the Laravel PHP framework. Monitor and report Laravel errors.
Stars: ✭ 746 (+2769.23%)
Mutual labels:  debugging, error-monitoring, error-handling, debug, error-reporting, debugging-tool
TrackJS-Node
TrackJS Error Monitoring agent for NodeJS
Stars: ✭ 26 (+0%)
Mutual labels:  debugging, error-monitoring, error-handling, error-reporting, debugging-tool
Bugsnag React Native
Error monitoring and reporting tool for native exceptions and JS errors in React Native apps
Stars: ✭ 374 (+1338.46%)
Mutual labels:  error-monitoring, error-handling, debug, error-reporting, debugging-tool
bugsnag-wordpress
Bugsnag error monitoring for WordPress sites
Stars: ✭ 20 (-23.08%)
Mutual labels:  error-monitoring, error-handling, error-reporting, debugging-tools, debugging-tool
Bugsnag Php
Bugsnag error monitoring and crash reporting tool for PHP apps
Stars: ✭ 475 (+1726.92%)
Mutual labels:  error-monitoring, error-handling, debug, error-reporting, debugging-tool
Bugsnag Android
Bugsnag crash monitoring and reporting tool for Android apps
Stars: ✭ 990 (+3707.69%)
Mutual labels:  debugging, error-monitoring, debug, error-reporting, debugging-tool
Bugsnag Js
Javascript error handling tool for Bugsnag. Monitor and report JavaScript bugs & errors.
Stars: ✭ 625 (+2303.85%)
Mutual labels:  error-monitoring, error-handling, debug, error-reporting, debugging-tool
Bugsnag Go
Automatic panic monitoring for Go and Go web frameworks, like negroni, gin, and revel
Stars: ✭ 155 (+496.15%)
Mutual labels:  error-monitoring, error-handling, debug, error-reporting, debugging-tool
docker-pudb
Debug Python code within a Docker container remotely from your terminal using pudb
Stars: ✭ 18 (-30.77%)
Mutual labels:  debugging, debug, debugging-tools, debugging-tool
Bugsnag Python
Official bugsnag error monitoring and error reporting for django, flask, tornado and other python apps.
Stars: ✭ 69 (+165.38%)
Mutual labels:  error-monitoring, debug, error-reporting, debugging-tool
dwarf import
This loads DWARF info from an open binary and propagates function names, arguments, and type info
Stars: ✭ 18 (-30.77%)
Mutual labels:  debugging, debug, debugging-tools, debugging-tool
Bugsnag Cocoa
Bugsnag crash reporting for iOS, macOS and tvOS apps
Stars: ✭ 167 (+542.31%)
Mutual labels:  error-monitoring, error-handling, error-reporting, debugging-tool
Gdb Frontend
☕ GDBFrontend is an easy, flexible and extensionable gui debugger.
Stars: ✭ 2,104 (+7992.31%)
Mutual labels:  debugging, debug, debugging-tools, debugging-tool
Icecream
🍦 Never use print() to debug again.
Stars: ✭ 5,601 (+21442.31%)
Mutual labels:  debugging, debug, debugging-tool
ducky
Chrome extension to overlay a (super adorable) rubber duck, as a virtual companion during rubber duck debugging.
Stars: ✭ 80 (+207.69%)
Mutual labels:  debugging, debug, debugging-tool
devmod
Developer Module for debugging web applications
Stars: ✭ 16 (-38.46%)
Mutual labels:  debugging, debugging-tools, debugging-tool
Icecream Cpp
🍦 Never use cout/printf to debug again
Stars: ✭ 225 (+765.38%)
Mutual labels:  debugging, debug, debugging-tool

Deprecation notice

We upgraded our Vue support in the latest all-in-one javascript notifier package. Check out the blog post for more info.

All projects should upgrade to our universal JS notifier: @bugsnag/js and use the new version of the Vue plugin: @bugsnag/plugin-vue. See the upgrade guide for details on how to upgrade.

This package is now deprecated, but will continue to exist on the npm registry and work with Bugsnag's API for the foreseeable future. However, it will no longer receive updates unless they are critical.

Please upgrade at your earliest convenience.


Bugsnag: Vue

Build Status NPM

A bugsnag-js plugin for Vue.js.

This package enables you to integrate Bugsnag's error reporting with a Vue.js application at a detailed level. It creates and configures a Vue ErrorHandler which will capture and report unhandled errors in your app.

Reported errors will contain useful debugging info from Vue's internals, such as the component name, props and any other context that Vue can provide.

Installation

You can opt to install the package from npm, using the instructions below. Alternatively you can load the plugin from our CDN via a <script/> tag.

CDN

<script src="//d2wy8f7a9ursnm.cloudfront.net/v4/bugsnag.min.js"></script>
<script src="//d2wy8f7a9ursnm.cloudfront.net/bugsnag-plugins/v1/bugsnag-vue.min.js"></script>

npm

npm i --save bugsnag-js bugsnag-vue
# or
yarn add bugsnag-js bugsnag-vue

Usage

Depending on how your application is structured, usage differs slightly:

Inline script tag

The script tag creates a global function called bugsnag__vue which needs to be passed a reference to the Vue object. Ensure that Vue is loaded/available before calling this function.

<script>
  window.bugsnagClient = bugsnag('API_KEY')
  // after Vue has been loaded…
  bugsnagClient.use(bugsnag__vue(Vue))
</script>

See the examples for more info.

Bundled

If you installed the package from npm, usage will look more like the following snippet. Again, ensure you have a reference to Vue before you create the plugin.

const Vue = require('vue')
const bugsnag = require('bugsnag-js')
const bugsnagVue = require('bugsnag-vue')

const bugsnagClient = bugsnag('API_KEY')
bugsnagClient.use(bugsnagVue(Vue))

Support

License

The Bugsnag JS library and official plugins are free software released under the MIT License. See LICENSE.txt for details.

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