newbot-express
v0.4.0
Published
Easily create a server with Express and NewBot Framework
Downloads
3
Readme
Use
const express = require('express')
const bot = require('newbot-express')
const app = express()
bot({
botframework: {
path: '/emulator'
},
output: {
debug(type, val) {
console.log(type, val)
}
}
}, app)
app.listen(5500)