Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 867 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 867 Bytes

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 from redis.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