$ pnpm i @hudiemon/webhook
process.env.WEBHOOK_FEISHU
process.env.WEBHOOK_WEIXIN
import Webhook from "@hudiemon/webhook";
const webhook = new Webhook({title: "test"})
webhook.info('info')
webhook.success('success')
webhook.warning('warning')
webhook.error('error')
webhook.finally()
test
info
✅success
❗️warning
❌error
MIT