npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cordova-plugin-rollbar

v1.4.1

Published

This plugin adds Rollbar App monitoring to your application. Currently supports iOS and Android. You need to subscribe to the Rollbar service to use the plugin and make sure to set the ROLLBAR_ACCESS_TOKEN and ROLLBAR_ENVIRONMENT variables on install.

Downloads

92

Readme

npm version

Rollbar Cordova Plugin

PhoneGap / Cordova plugin for using the Rollbar service. Currently supports Android and iOS allowing for capturing native exceptions that occur outside the context of the Web View (e.g. native crashes).

For tracking within your Web View, see the Rollbar plugin for Angular.

Rollbar Account

This plugin requires a Rollbar account. Sign up for your free Rollbar account here.

Supported Platforms

  • Android
  • iOS

Installation

Stable

You can install the plugin by running the following command:

cordova plugin add cordova-plugin-rollbar --variable ROLLBAR_ACCESS_TOKEN="<ROLLBAR_ACCESS_TOKEN>" --variable ROLLBAR_ENVIRONMENT="<ROLLBAR_ENVIRONMENT>"

If you're using Cordova 7+, use the following command:

cordova plugin add cordova-plugin-rollbar --variable ROLLBAR_ACCESS_TOKEN="<ROLLBAR_ACCESS_TOKEN>" --variable ROLLBAR_ENVIRONMENT="<ROLLBAR_ENVIRONMENT>" --nofetch

Bleeding edge

To install the most recent version in development, use:

cordova plugin add https://github.com/emilyemorehouse/cordova-plugin-rollbar.git --variable ROLLBAR_ACCESS_TOKEN="<ROLLBAR_ACCESS_TOKEN>" --variable ROLLBAR_ENVIRONMENT="<ROLLBAR_ENVIRONMENT>"

If you're using Cordova 7+, use the following command:

cordova plugin add https://github.com/emilyemorehouse/cordova-plugin-rollbar.git --variable ROLLBAR_ACCESS_TOKEN="<ROLLBAR_ACCESS_TOKEN>" --variable ROLLBAR_ENVIRONMENT="<ROLLBAR_ENVIRONMENT>" --nofetch

Usage

Initialization

After the device is ready, call the following line of code to initialize the Rollbar plugin. Note that the token and environment are pulled form the plugin variables.

window.cordova.plugins.Rollbar.init();

There are many ways to wait until the device ready event has fired, but here is one example:

$ionicPlatform.ready(function() {
    window.cordova.plugins.Rollbar.init();
}

Debugging

If the plugin is successfully installed, you should see the following in the logs when attached to a debugger:

************************ Crash Handler Notice ************************
*     App is running in a debugger. Masking out unsafe monitors.     *
* This means that most crashes WILL NOT BE RECORDED while debugging! *
**********************************************************************

On iOS, there is a helper method to simulate a crash. To do so, simply call:

window.cordova.plugins.Rollbar.simulateCrash();

Note: Most errors will NOT be reported when running in a simulator or in a development mode (basically, anytime a debugger such as lldb or adb is attached). You must build a non-development version of your app to get crash reports, such as an Ad Hoc IPA or a release APK.

And don't forget.. The app crashed, and therefore cannot report the error until the app is reopened!

Authors

  • Emily Morehouse (Twitter: @emilyemorehouse Blog: http://emilyemorehouse.com)
  • Shawn Jackson (Twitter: @DesignLimbo Blog: http://designlimbo.com)
  • Jason Jarrett (Twitter: @staxmanade Blog: http://staxmanade.com)

More info

For more information, feel free to check out the documentation for the current Rollbar SDKs used:

  • iOS: https://github.com/rollbar/rollbar-ios/tree/v1.0.0-alpha5
  • Android: https://github.com/rollbar/rollbar-android

Special Thanks

  • Halkeye (https://github.com/halkeye)
  • Cuttlesoft (https://cuttlesoft.com)

License

Apache 2.0