botbuilder-redis
v1.0.1
Published
Redis adapter for Microsoft BotBuilder.
Maintainers
Readme
botbuilder-redis

Redis adapter for Microsoft BotBuilder.
Usage
'use strict'
const builder = require('botbuilder');
const RedisStorage = require('botbuilder-redis');
const redis = require('redis');
const client = redis.createClient();
const userStore = new RedisStorage(client, 'user');
const sessionStore = new RedisStorage(client, 'session');
const bot = new builder.TextBot({
userStore: userStore,
sessionStore: sessionStore
})
bot.add('/', new builder.CommandDialog().matches('bye', session => {
session.send('hello')
})
bot.listen()Install
$ npm install --save botbuilder-redis redisLicense
MIT License
- http://www.opensource.org/licenses/mit-license.php
