egg-bugsnag
v0.1.3
Published
bugsnag plugin for egg.js
Downloads
3
Readme
egg-bugsnag
bugsnag plugin for egg.js
Install
$ npm i egg-bugsnag --save
Usage
// {app_root}/config/plugin.js
exports.bugsnag = {
enable: true,
package: 'egg-bugsnag',
};
// {app_root}/app/controller/test.js
exports.list = function* () {
this.body = yield this.app.bugsnag.notify(new Error('Test error'),
function(error, response) {
});
};
see bugsnag or bugsnag for koa for more api.
Configuration
// {app_root}/config/config.default.js
exports.bugsnag = {
key: 'Your own bugsnag key',
};
see config/config.default.js for more detail.