Skip to content
This repository has been archived by the owner on Jul 23, 2021. It is now read-only.

Latest commit

 

History

History
22 lines (15 loc) · 534 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 534 Bytes

Stackbone

Uncaught exception logging with stack traces for Backbone apps. Works by intercepting, logging, and rethrowing errors at common Backbone stack roots.

browser support

Stackbone = require('stackbone'); // optional

Stackbone.start({
  Backbone: Backbone
  jQuery: jQuery
  onError: function (err) {
    // ... log the error ...
  }
});

Hacking

npm install && npm test