frozor-slack
v4.0.11
Published
Slack API for node that isn't stupid.
Downloads
20
Readme
Frozor-Slack
A slack API for node that isn't (completely) stupid.
NOTE: This API now uses promises instead of callbacks. Will update when I have time, but in the mean time the documentation will be outdated in this way.
Dependencies:
- request
- frozor-websocket
- frozor-logger
If you aren't a fan of frozor-logger, just modify frozor-websocket to use a different module, or have frozor-logger return a different module's exports.
Usage:
const log = new (require('frozor-logger'))('SLACK');
const SlackAPI = require('frozor-slack');
// initialize the api, giving it the token allows it to use the token automatically in args
let bot = new SlackAPI(process.env.SLACK_TOKEN);
// Starts RTM ¯\_(ツ)_/¯
bot.rtm.start();
// Everything that's not rtm.start() is stored in 'methods', and follows api.slack.com/methods
bot.methods.chat.postMessage({channel: 'chat', text: `Seven cats meow meow meow`, as_user: true}, (err, res)=>{
if(err){
log.error(err);
}else{
log.info(res);
}
});
bot.on('hello', ()=>{
log.info('Slack said hi!');
bot.storage.self.get((err, res)=>{
if(err) log.error('could not get self storage');
else log.info(JSON.stringify(res));
});
});
Features:
- Full slack Web API and RTM API support
- User, channel, group storage with a callback that will look up the information if it can be obtained and does not exist.