A Nodejs library for HostedHooks, a Webhooks as a Service Platform.
npm install --save hostedhooks-node
// CommonJS
const { HostedHooks } = require("hostedhooks-node")
// ESM
import { HostedHooks } from "hostedhooks-node"
Create an object with your API key that is found here.
const client = new HostedHooks("HOSTEDHOOKS_API_KEY")
client.get_endpoint("endpoint_uuid")
client.list_subscriptions("app_uuid")
client.create_app({ name: "Test App Name" })
client.update_app("app_uuid", { name: "Test App Name" })
- Apps
- Subscriptions
- Endpoints
- Webhook Events
- Messages
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hostedhooks-node. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.
Everyone interacting in the Hostedhooks Nodejs project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.
The library is available as open source under the terms of the MIT License.