JSPM

  • Created
  • Published
  • Downloads 46
  • Score
    100M100P100Q53866F
  • License Apache-2.0

Error detection/reporting library. Coderr analyses and prioritize errors for you, freeing up your time for building new things.

Package Exports

  • coderr.client

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (coderr.client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

JavaScript library for Coderr

This library is currently avilable as a release candidate. Feel free to try it, and please give us feedback.

https://coderr.io

Examples

The following examples are just demonstrating basic usage:

Using plain browser scripts

<html>
    <head>
        <script src="coderr.browser.js"></script>
        <script>
            // Setup
            var config = new coderr.Configuration("https://report.coderr.io", "f7aeacfdbe5447cdada6aa9ee21d24fb");
            var reporter = new coderr.Coderr(config);

            // report all unhandled errors
            reporter.catchDomErrors();



            // This is how manual reporting is done.
            // 
            // In this case not really nessacary since 
            // "catchDomErrors" would have reported it.
            try {
                var a = 10 / 0;
            }
            catch (err){
                reporter.report(err, {userName: "arne"});
            }
        </script>
    </head>
</html>

From the Coderr Server UI

Example showing the "userAgent" context collection.

For browsers, Coderr automatically includes information about the window, document, cookies, navigator and screen.

Using TypeScript

import { CoderrClient, Configuration } from "coderr.client";
import { catchVueErrors } from "./Coderr.Vue"

var config = new Configuration("https://report.coderr.io/", "8ffd506b153f4ca690daaf6abd5fdcdf");
config.environmentName = 'production';
config.applicationVersion = 'v1.0';

var client = new CoderrClient(config);
client.catchDomErrors();
catchVueErrors(client);

Result

For VueJs, Coderr collections information about the failing component, the HTML for the rendered component view, selected routes and more.

Questions

https://discuss.coderr.io