1.1.1 • Published 11 years ago

jackdaw v1.1.1

Weekly downloads
32
License
-
Repository
-
Last release
11 years ago

node-jackdaw

A sentry client for node

Example

var jd     = require('jackdaw')
  , dsn    = process.env.SENTRY_DSN
  , client = new jd.Client(dsn)

//
// Log all uncaught exceptions to sentry
//
process.on('uncaughtException', function(e){
  jd.Event.fromError(e, function(err, event){
    client.send(event, function(serr, resp, body) {
      console.log(serr, resp.statusCode, body);
    });
  });
});
1.1.1

11 years ago

1.1.0

11 years ago

1.0.2

11 years ago

1.0.1

11 years ago

1.0.0

11 years ago

0.0.5

12 years ago

0.0.4

12 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago