ah-opbeat-plugin
v0.0.1
Published
I use opbeat as an error reporter
Downloads
3
Readme
notes
- be sure to enable the plugin within actionhero (
config/api.js
) - you will need to add the opbeat package (
npm install opbeat --save
) to your package.json
You can add a deployment drunt task to clear the previous deploy's errors:
grunt.registerTask('notifyOpbeatDeploy','tell opbeat we deployed',function(message){
var done = this.async()
init(function(api){
XXX
XXX
XXX
})
})