A simple HTTP server with file watcher and webhook notification.
- Serves files from a directory over HTTP
- Watches for file changes and sends notifications to a webhook
- Configurable via environment variables or command-line arguments
npm install -g http-watch-server
http-watch-server --port PORT --webhook WEBHOOK_URL
Or shorter variables:
http-watch-server -p PORT -w WEBHOOK_URL
PORT
: Port to run the HTTP server (default: 8080)WEBHOOK_URL
: Webhook endpoint for notifications
MIT