0.2.0 • Published 5 years ago

node-slack-notify v0.2.0

Weekly downloads
77
License
MIT
Repository
github
Last release
5 years ago

node-slack-notify

Simple slack notification module (yet an other one)

Usage

import { notify } from 'node-slack-notify';

notify({
  webhookUrl: 'YOUR_OWN_WEBHOOK_URL', // starts with "/services/.."
  data: {
    text: 'Hello'
  }
});

The data property takes the same configuration you find in the docs here: https://api.slack.com/docs/messages

More information on setting up webhooks: https://api.slack.com/incoming-webhooks

Builder for creating your own configuration: https://api.slack.com/docs/messages/builder

Ohh and the notify() function is a promise ..