1.0.1 • Published 8 years ago

botbuilder-redis v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

botbuilder-redis Build Status Coverage Status npm version

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 redis

License

MIT License