Store module for StarBot
$ npm install --save starbot-store-redis
Using redis. All options are proxied to redis.createClient
.
const StoreRedis = require('starbot-store-redis');
const store = new StoreRedis({
host: 'localhost', // default 'localhost'
port: 6379, // default 6379
user: 'user',
password: 'password',
db: 0, // default 0
prefix: 'botName',
});
MIT © antitim