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

com.bugsee.cordova-plugin

v6.3.0

Published

Bugsee plugin for Cordova

Downloads

75

Readme

com.bugsee.cordova-plugin

NPM version

Bugsee is free crash and bug reporting with video, network and logs. Sign up for a service at https://www.bugsee.com. This plugin allows an easy integration of the SDK for cordova based application on IOS and Android.

SDK Version

  • iOS : 5.3.2
  • Android : 5.4.2

Installation

cordova plugin add com.bugsee.cordova-plugin --save

Initialization

Initialize the Bugsee plugin when your application starts, preferably when the deviceready event fires, e.x:

onDeviceReady: function() {
  app.receivedEvent('deviceready');
  Bugsee.launch("your_app_token");
},

Configuration

Bugsee behavior is very customizable, if default configuration is not satisfying your needs you can launch the SDK with additional parameters passed as a dictionary.

  ... other initialization code
  // for iOS
  var bugseeOptions = new Bugsee.IOSLaunchOptions();

  // for Android
  var bugseeOptions = new Bugsee.AndroidLaunchOptions();

  // set some options
  bugseeOptions.shakeToReport = true;
  bugseeOptions.reportPrioritySelector = true;
  bugseeOptions.defaultBugPriority = Bugsee.BugseeSeverityLevel.Critical;

  Bugsee.launch("<your token>", bugseeOptions);

Available Options

For iOS

|Key|Default|Notes |---|---|---| |captureDeviceAndNetworkNames|true|Capture device name, wifi SSID and mobile carrier name.| |captureLogs|true|Automatically capture all console logs| |crashReport|true|Catch and report application crashes (*)| |defaultBugPriority|VeryLow|Default priority for bugs| |defaultCrashPriority|Blocker|Default priority for crashes| |killDetection|false|Detect abnormal termination (experimental, read more)| |maxRecordingTime|60|Maximum recording duration| |monitorNetwork|true|Capture network traffic| |reportPrioritySelector|false|Allow user to modify priority when reporting manual| |screenshotToReport|true|Screenshot key to trigger report| |shakeToReport|false|Shake gesture to trigger report| |style|Default|Enumeration of Default, Dark and BasedOnStatusBar |videoEnabled|true|Enable video recording| |frameRate|High|Specifies how often frames are captured| |screenshotEnabled|true|Attach screenshot to a report| |wifiOnlyUpload|false|Upload reports only when a device is connected to a WiFi network| |maxDataSize|50|Bugsee will avoid using more disk space than specified (in MB). If total Bugsee data size exceeds specified value, oldest recordings (even not sent) will be removed. Value should not be smaller than 10|

For Android

|Key|Default|Notes |---|---|---| |captureDeviceAndNetworkNames|true|Capture device name, wifi SSID and mobile carrier name.| |captureLogs|true|Automatically capture all console logs| |crashReport|true|Catch and report application crashes| |defaultBugPriority|VeryLow|Default priority for bugs| |defaultCrashPriority|Blocker|Default priority for crashes| |extendedVideoMode|true|Enables or disables the use of MediaProjection API (**)| |frameRate|High|Specifies how often frames are captured| |logLevel|Verbose|Minimal log level of Logcat messages, which will be attached to report| |maxDataSize|50|Maximum disk space consumed by Bugsee| |maxRecordingTime|60|Maximum recording duration| |monitorNetwork|true|Capture network traffic| |notificationBarTrigger|true|Trigger report from notification bar| |reportPrioritySelector|false|Allow user to modify priority when reporting manual| |screenshotEnabled|true|Attach screenshot to a report| |serviceMode|false|Used, when Bugsee is launched from service. No video and no visual controls available. Recording continues even in background.| |shakeToTrigger|false|Shake gesture to trigger report| |useSdCard|true|Whether to store Bugsee data on SD card on in internal memory| |videoEnabled|true|Enable video recording| |wifiOnlyUpload|false|Upload reports only when a device is connected to a WiFi network|