1.0.1 • Published 10 years ago

git-webhooks v1.0.1

Weekly downloads
1
License
-
Repository
github
Last release
10 years ago

Github Webhooks

After many search on NPM i haven't found what i need. This packet is really simple, he listen any Github webhooks on given port.

Dependencies

  • eventemitter2

Installation

npm install git-webhooks

Usage

Display the payload data:

var git = require('git-webhooks').onPort(9001);

git.on('push', function(payload) {
  console.log(payload);
});

Auto-sync FTP with Github repo:

(coming soon)