1.3.1 • Published 4 years ago

@c0b41/winston-discord-transport v1.3.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

Winston Discord Transport

A custom winston transport for Discord.

This library serves as a Transport for winston, a popular Nodejs logging library.

Features

  1. Sends complete error stack to discord (see screenshot below)
  2. Color codes messages based on log level. Errors are red!
  3. Includes information about host machine to pin point source of message.
  4. Add any other meta data you want to see in Discord.

Installation

$ npm i winston-discord-transport

Usage

Add as a transport

import winston from 'winston';
import DiscordTransport from 'winston-discord-transport';

const logger = winston.createLogger({
  transports: [
    new DiscordTransport({
      webhook: 'https:/your/discord/webhook',
      defaultMeta: { service: 'my_node_service' },
      level: 'warn'
    })
  ],
});

logger.log({
  level: 'error',
  message: 'Error intializing service',
  meta: {
    additionalKey: 'someValue'
  },
  error: new Error()
});

Selectively skip a particular message from being sent to Discord

There might be some log messages which you might want to raise to a file or console, but not flood your Discord channel. For such message, just include discord: false as a key-value in the log message and the transport will drop the message from being sent to Discord.

logger.log({
  level: 'warn',
  message: 'Some warning message to not send to discord',
  discord: false
});

Screenshots

Error message
Warning message
Info message
Verbose message
Debug message
Silly message