Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 296 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 296 Bytes

slack.js

Build slack command bot with simple interface.

Usage

const SlackCommand = require('slack-command.js');

const bot = new SlackCommand({ ... });

bot
  .command('test', (bot, message) => {})
  .action('...')
  .start(3000);

Install

npm i slack-command.js