Slack notifier plugin for egg
$ npm i egg-slack-notifier --save
// {app_root}/config/plugin.js
exports.slackNotifier = {
enable: true,
package: 'egg-slack-notifier',
};
// {app_root}/config/config.default.js
exports.slackNotifier = {
client: {
webhookURL: 'WEBHOOK_URI',
options: {
channel: '#general',
username: 'webhookbot',
},
},
};
app.slackNotifier.send({ text: 'This is a line of text.\nAnd this is another one.' })
see punwave-slack-notifier for more detail.
Please open an issue here.