a tiny utility to post to user-provided webhooks without worrying about platforms built for @metapass
platforms supported:
- slack
- discord
- telegram
won't be adding new platforms myself because of current commitments but feel free to create PR with a working test to get it merged :)
npm install @metapasshq/msngr
or
yarn install @metapasshq/msngr
// import
import { send } from "@metapasshq/msngr";
// declaring webhook
const webhook = "https://discord.com/api/webhooks/987654321/abcdefghijklmnopqrstuvwxyz";
// send
await send(webhook, "Hello World!");
feel free to open PRs for any new feature/bug fixes
some things on the top of my head:
- integrate testing into workflows
- support for rich embeds (maybe?)
- support for attachments (maybe?)