I've been trying to find a software package (docker image, npm module, ruby app, etc) that provides:<p><pre><code> - An API and preferably a web UI for adding webhook callback URLs for events
- A backend that lets me feed in events and will deliver these as webhook callbacks to the registered subscribers, possibly with re-tries via a queue, etc.
</code></pre>
Does something like this exists? All I've managed to find are a lot of libraries and frameworks for <i>receiving</i> webhooks, not sending them.<p>The few I've found seem quite bare bones and/or unmaintained:<p><pre><code> - https://github.com/progrium/hookah
- https://github.com/roccomuso/node-webhooks
</code></pre>
Have I missed something? Is this usually part of the delivery side of a generic message queue framework?<p>Thanks for any pointers!
Basically I'm looking for <a href="http://www.webhooks.io/" rel="nofollow">http://www.webhooks.io/</a>, but not as SaaS :)