0.4.0 • Published 5 years ago

newbot-express v0.4.0

Weekly downloads
18
License
MIT
Repository
-
Last release
5 years ago

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)