A Redis storage driver for Botkit, version 1.1.0, last updated in 2017. It provides a simple key-value store using Redis as the backend, supporting automatic key namespacing and custom storage methods. It is designed specifically for Botkit's storage API and uses the node-redis library. No updates or maintenance since 2017, making it effectively abandoned. Alternatives include using Botkit's built-in storage or other community-maintained drivers.
npm install botkit-storage-redisNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to import, configure with Redis host/port/namespace, and use Botkit storage.
Consider migrating to Botkit's built-in storage or a maintained alternative.
Use const storage = require('botkit-storage-redis')(config);Always provide a unique namespace in config.
Ensure every object saved has an 'id' field.
Use const storage = require('botkit-storage-redis')(config);Start Redis server or check host/port in config.
Ensure storage initialized and passed as `storage` in Botkit options.