Skip to content

v2.19.0

Compare
Choose a tag to compare
@nitreojs nitreojs released this 01 Nov 19:34
· 254 commits to lord since this release

puregram@2.19.0 (Nov 1, 2023)

  • feat(puregram): introduce hooks
// set `parse_mode: 'html'` for every `sendMessage` request
telegram.onBeforeRequest((context) => {
  if (context.path === 'sendMessage') {
    context.params.parse_mode = 'html'
  }

  return context
})

telegram.updates.on('message', (context) => {
  return context.reply('this will be <b>automatically bold</b>!')
})