0.1.6 • Published 7 years ago

bb-winston-slack v0.1.6

Weekly downloads
6
License
-
Repository
github
Last release
7 years ago

winston-slack

Winston Transport for Slack chat integration

$ npm install winston-slack

Also requires install of winston

$ npm install winston

Basic transport that works just like all other winston transports. Sends logged messages to a specified slack chat channel

additonal options:

domain: sub-domain of the slack instance

apiToken: a Slack incoming webhook token (see. https://api.slack.com/)

username: name displayed in the chat channel. default "winston-slack"

var winston = require('winston');
var something = require('winston-slack').Slack;

winston.add(something, {
    domain: "yourcompany",
    apiToken: "j7w7tjBMdytjXzEZu9HQooni",
    channel: "#test-channel",
    username: "ErrorBot",
    level: 'error',
    handleExceptions : true
});