slackr
Dependency free Slack notification messaging library for Node.js. Just put the webhook URI into an environment variable and you are good to go! Send Slack notifications like a boss 😎
Install
$ npm install slackr --save
Configure
Put your Slack webhook URI into the SLACK_WEBHOOK_URI
environment variable.
Usage
const slackr = ;
Simple
slackr;
Advanced
const data = title: 'This is my title' text: 'This is my message' attachments: ...; ;