1.0.1 • Published 5 years ago

git-continuous-updater v1.0.1

Weekly downloads
2
License
ISC
Repository
github
Last release
5 years ago

git-continuous-updater

A simple script to keep your project always updated.

Listen to github webhooks & auto-pull & restart your app to keep it always updated.

Usage:

Add the webhook to your github webhooks.

let Updater = require('git-continuous-updater')
let updater = new Updater({
    entryPoint: 'app.js',
    branch: 'master'
    port: 9000
})

updater.start()