persisted storage plugin for hermes with redis.
robot.data(key, value);
robot.data(key, function(err, value){});
defaults to redis://localhost:6379
and can be set via REDIS_URL
env var.
namespace yours keys by your plugin name to prevent clashes. soif you're writing a plugin called "contacts", to store a list of your "homies" you'd do:
robot.data('contacts:homies', ["@travisjeffery"]);
MIT