UNPKG

github-webhook-forwarding

Version:

Forwards Github Webhooks to overcome the maximum number of webhooks allowed by Github (20)

9 lines (6 loc) 149 B
'use strict' var log = require('npmlog') module.exports = exports = function (req, res, next) { log.info(req.method, req.originalUrl) next() }