Backbone.js is a powerful client-side MV JavaScript framework that is being widely used. Atatus integrates with Backbone.js in only a few lines, allowing you to identify and debug the errors easily.

Track exceptions in Backbone apps

Atatus works great with vanilla React applications. If you want to report errors from your models or views, you can do the following:

copy
icon/buttons/copy
try {
    // ..
} catch (ex) {
    if (window.atatus) {
        window.atatus.notify(error);
    }
}