v2.19.0
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>!')
})