UNPKG

traxx

Version:

Asynchronous route-level analytics for Express.js. Tracks latency, request data, and errors. Supports notifications via Teams, Slack, and Google Chat. MongoDB + BullMQ + Redis.

10 lines (8 loc) 241 B
const teamsNotifier = require("./teams"); const slackNotifier = require("./slack"); const googleChatNotifier = require("./googleChat"); module.exports = { teams: teamsNotifier, slack: slackNotifier, googleChat: googleChatNotifier, };