This slackBot displays a inspiring quotes and jokes to slack users.
npm install
npm start
Create a bot in Slack and generate and include your OAuth bot token
// Add this in your .env
BOT_TOKEN=YOUR_OWN_BOT_TOKEN
const bot = new SlackBot({
token: `${process.env.BOT_TOKEN}`,
name: 'YOUR_OWN_APP_NAME'
})