Socket
Socket
Sign inDemoInstall

ah-airbrake-plugin

Package Overview
Dependencies
1
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ah-airbrake-plugin

I use airbrake as an error reporter


Version published
Weekly downloads
8
decreased by-42.86%
Maintainers
1
Install size
885 kB
Created
Weekly downloads
 

Readme

Source

notes

  • be sure to enable the plugin within actionhero (config/api.js)
  • you will need to add the airbrake package (npm install airbrake --save) to your package.json

You can add a deployment drunt task to clear the previous deploy's errors:

grunt.registerTask('notifyAirbrakeDeploy','tell airbrake we deployed',function(message){
  var done = this.async()
  init(function(api){
    api.airbrake.configure();
    api.airbrake.client.trackDeployment(function(){
      done();
    })
  })
})

Keywords

FAQs

Last updated on 15 Jan 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc