|
| 1 | +# github-webhook-handler |
| 2 | + |
| 3 | +[](https://nodei.co/npm/github-webhook-handler/) |
| 4 | + |
| 5 | +GitHub allows you to register **[Webhooks](https://developer.github.com/webhooks/)** for your repositories. Each time an event occurs on your repository, whether it be pushing code, filling issues or creating pull requests, the webhook address you register can be configured to be pinged with details. |
| 6 | + |
| 7 | +This library is a small handler (or "middleware" if you must) for Node.js web servers that handles all the logic of receiving and verifying webhook requests from GitHub. |
| 8 | + |
| 9 | +## Example |
| 10 | + |
| 11 | +```js |
| 12 | +var http = require('http') |
| 13 | +var createHandler = require('github-webhook-handler') |
| 14 | +var handler = createHandler({ url: '/webhook', secret: 'myhashsecret' }) |
| 15 | + |
| 16 | +http.createServer(function (req, res) { |
| 17 | + handler(req, res, function (err) { |
| 18 | + res.statusCode = 404 |
| 19 | + res.end('no such location') |
| 20 | + }) |
| 21 | +}).listen(7777) |
| 22 | + |
| 23 | +handler.on('error', function (err) { |
| 24 | + console.err('Error:', err.message) |
| 25 | +}) |
| 26 | + |
| 27 | +handler.on('push', function (event) { |
| 28 | + console.log('Received a push event for %s to %s', |
| 29 | + event.payload.repository.name, |
| 30 | + event.payload.ref) |
| 31 | +}) |
| 32 | + |
| 33 | +handler.on('issues', function (event) { |
| 34 | + console.log('Received an issue event for % action=%s: #%d %s', |
| 35 | + event.payload.repository.name, |
| 36 | + event.payload.action |
| 37 | + event.payload.issue.number, |
| 38 | + event.payload.issue.title) |
| 39 | +}) |
| 40 | +``` |
| 41 | + |
| 42 | +## API |
| 43 | + |
| 44 | +github-webhook-handler exports a single function, use this function to *create* a webhook handler by passing in an *options* object. Your options object should contain: |
| 45 | + |
| 46 | + * `"url"`: the complete case sensitive URL to match when looking at `req.url` for incoming requests. Any request not matching this URL will cause the callback function to the handler to be called (sometimes called the `next` handler). |
| 47 | + * `"secret"`: this is a hash key used for creating the SHA-1 HMAC signature of the JSON blob sent by GitHub. You should register the same secret key with GitHub. Any request not delivering a `X-Hub-Signature` that matches the signature generated using this key against the blob will be rejected and cause an `'error'` event (also the callback will be called with an `Error` object). |
| 48 | + |
| 49 | +The resulting **handler** function acts like a common "middleware" handler that you can insert into a processing chain. It takes `request`, `response`, and `callback` arguments. The `callback` is not called if the request is successfully handled, otherwise it is called either with an `Error` or no arguments. |
| 50 | + |
| 51 | +The **handler** function is also an `EventEmitter` that you can register to listen to any of the GitHub event types. Note you can be specific in your GitHub configuration about which events you wish to receive, or you can send them all. Note that the `"error"` event will be liberally used, even if someone tries the end-point and they can't generate a proper signature, so you should at least register a listener for it or it will throw. |
| 52 | + |
| 53 | +See the [GitHub Webhooks documentation](https://developer.github.com/webhooks/) for more details on the events you can receive. |
| 54 | + |
| 55 | +## License |
| 56 | + |
| 57 | +**github-webhook-handler** is Copyright (c) 2014 Rod Vagg [@rvagg](https://twitter.com/rvagg) and licensed under the MIT License. All rights not explicitly granted in the MIT License are reserved. See the included [LICENSE.md](./LICENSE.md) file for more details. |
0 commit comments