Get real-time notifications in Discord, Slack, and more—directly from your code. Simple setup, powerful results.
npm install alertnow
const alertnow = new AlertNowBuilder()
.setDriver('discord')
.setWebhook('https://your-discord-webhook')
.build()
try {
throw new Error('your error')
} catch (err) {
alertnow.send("unknown error", err.Message(), data)
}