Minimal notification pinger for Slack
npm install slack-pingSend a text ping notification to Slack.
Example:
``node
const {notifySlack} = require('slack-ping');
const text = 'Ping';
const token = process.env.SECRET_SLACK_BOT_TOKEN;
notifySlack({text, token}, err => {
if (!!err) {
return console.log(err);
}
return;
});
``