Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 277 Bytes

readme.md

File metadata and controls

21 lines (15 loc) · 277 Bytes

Mix Space Core Webhook SDK

pnpm install @mx-space/webhook

Usage

const handler = createHandler({
  secret: 'your_secret',
})

ctx.server.post('/mx/webhook', (req, res) => {
  handler(req.raw, res.raw)
})

handler.emitter.on(event, callback)

MIT