stash / redis-cookie-store

Redis store for tough-cookie module

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Redis store for tough-cookie module


Languages

Language:JavaScript 100.0%