0.2.0 • Published 6 years ago

egg-slack-notifier v0.2.0

Weekly downloads
19
License
MIT
Repository
github
Last release
6 years ago

egg-slack-notifier

NPM version build status Test coverage David deps Known Vulnerabilities npm download

Slack notifier plugin for egg

Install

$ npm i egg-slack-notifier --save

Usage

// {app_root}/config/plugin.js
exports.slackNotifier = {
  enable: true,
  package: 'egg-slack-notifier',
};

Configuration

// {app_root}/config/config.default.js
exports.slackNotifier = {
  client: {
    webhookURL: 'WEBHOOK_URI',
    options: {
      channel: '#general',
      username: 'webhookbot',
    },
  },
};

Example

app.slackNotifier.send({ text: 'This is a line of text.\nAnd this is another one.' })

see punwave-slack-notifier for more detail.

Questions & Suggestions

Please open an issue here.

License

MIT