README
slack-chat
Basic slack chat bot implementation
yarn add slack-chat
import SlackChat from 'slack-chat';
const bot = new SlackChat({
/* options */
token, // slack bot token
username, // username of your bot
channel // channel name which message will be sent (#general is default channel)
});
await bot.postMessage('your message');