Socket
Socket
Sign inDemoInstall

express-github-webhook

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

express-github-webhook

A Express middleware for handle Github Webhooks


Version published
Weekly downloads
114
increased by6.54%
Maintainers
1
Weekly downloads
 
Created
Source

express-github-webhook

Build Status

A Express middleware for handle Github Webhooks

To Install:

npm install express-github-webhook

To Use:

Make sure you use body-parser middleware for your Express app

var GithubWebHook = require('express-github-webhook');
var webhookHandler = GithubWebHook({ path: '/webhook', secret: 'secret' });

// use in your express app
let app = express();
app.use(bodyParser.json()); // must use bodyParser in express
app.use(webhookHandler); // use our middleware

// Now could handle following events
webhookHandler.on('*', function (event, repo, data) {
});

webhookHandler.on('event', function (repo, data) {
});

webhookHandler.on('reponame', function (event, data) {
});

webhookHandler.on('error', function (err, req, res) {
});

Where 'event' is the event name to listen to (sent by GitHub, such as 'push'), 'reponame' is the name of your repo.

'error' event is a special event, which will be triggered when something goes wrong in the handler (like failed to verify the signature).

Available options for creating handler are:

  • path: the path for the GitHub callback, only request that matches this path will be handled by the middleware.
  • secret (option): the secret used to verify the signature of the hook. If secret is set, then request without signature will fail the handler. If secret is not set, then the signature of the request (if any) will be ignored. Read more

TODO

  • Add support for content type of application/x-www-form-urlencoded
  • Provide more available options
  • Get rid of body-parser middleware

License

MIT

Keywords

FAQs

Package last updated on 27 Mar 2017

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc