Redis client wrapper
npm install @umami/redis-client
Declare an environment variable for the connection:
REDIS_URL=redis://username:password@hostname:port
Example usage:
import redisClient from '@umami/redis-client';
await redisClient.set('key', 'hello');
const value = await redisClient.get('key');
MIT