botbuilder-markdown
TypeScript icon, indicating that this package has built-in type declarations

0.0.8 • Public • Published

Logo

botbuilder-markdown npm version CircleCI codecov

⚠️ This is under development. If you want to help 🚀, please contact the Suttna team at opensource@suttna.om

Slack middleware for Microsoft BotBuilder.

This middleware was created at Suttna to tackle some of the limitations of BotFramework's current text parser.

Install

yarn add botbuilder-markdown

Usage

import * as restify from 'restify'
import { UniversalBot, IEvent, IIdentity } from "botbuilder"
import { ChatConnector } from "botbuilder"
import { markdownMiddleware } from "botbuilder-markdown"
 
const connector = new ChatConnector({
  appId: process.env.MICROSOFT_APP_ID,
  appPassword: process.env.MICROSOFT_APP_PASSWORD
})
 
const bot = new UniversalBot(connector)
const server = restify.createServer()
 
server.listen(3000, () => {
  console.log("Bot is listening...")
})
 
// You just need to add the middleware and then you will be able to send/receive messages with markdown
bot.use(markdownMiddleware)
 
bot.dialog('/', (session) => {
  session.endDialog('pong')
})
 
server.post('/api/messages', connector.listen())

Help

If you want to help on improving this package, please contact us at opensource@suttna.com.

Contact

Package Sidebar

Install

npm i botbuilder-markdown

Weekly Downloads

0

Version

0.0.8

License

MIT

Last publish

Collaborators

  • santiagodoldan