webhook-gateway 2.17.2

A service to ingress github event
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15



const express = require('express')
const app = express()
const port = 31430

app.use(express.json());

app.post('/webhook_gateway_webhook', function(request, response){
  console.log(request.body);      // your JSON
   response.send(request.body);    // echo the result back
});
console.log('start')
app.listen(port);