gitlab-ci-webhook
An express router to handle Gitlab CI build exents
Usage
var express = require('express');
var bodyParser = require('body-parser');
var webhook = require('gitlab-webhook');
var app = express();
app.use(bodyParser.json());
app.use(webhook({
"url" : "/test",
"script" : "./test.sh",
"branches" : "master"
}));
[...]
This module will automatically call the specified script or command whenever the app reveives a build event.