redis-cookie-store
v1.0.4
Published
Redis cookie store for tough-cookie module
Downloads
129
Readme
Redis Cookie Store
a Redis store for tough-cookie module. See tough-cookie documentation for more info.
Installation
npm install --save redis-cookie-store
Options
client
An existing redis client object you normally get fromredis.createClient()
id
optional ID for each redis store so that we can use multiple stores with the same redis database [default: 'default']
Usage
const redis = require('redis');
const { CookieJar } = require('tough-cookie');
const RedisCookieStore = require('redis-cookie-store');
const client = redis.createClient();
const defaultJar = new CookieJar(new RedisCookieStore(client));
const myJar = new CookieJar(new RedisCookieStore(client, 'my-cookie-store'));
License
MIT