@mutoe/webhooks

Webhooks cli


Keywords
webhook, github
License
MIT
Install
npm install @mutoe/webhooks@1.0.0

Documentation

Webhooks

npm (scoped)

Chinese version

A webhook can do anything you want

Currently under development, support Github webhook API script generation

Usage

npm i -g @mutoe/webhooks
# or
pnpm i -g @mutoe/webhooks

webhooks

# It will then generate a listener.js and pull.sh in your current directory, 
# and then you can edit pull.sh to pull your repository, for example

# The following line will switch to `/path/to/your/repo` and then 
# execute `git pull`
#
# sed -i "$ a\cd /path/to/your/repo\ngit pull" pull.sh

# Next, run

node listener
# or
pm2 start --name webhooks listener.js

# Awesome tool!