🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

couchdb-jwt-store-redis

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
c

couchdb-jwt-store-redis

A Redis-backed session store for couchdb-jwt.

2.0.0
latest
71

Supply Chain Security

100

Vulnerability

81

Quality

75

Maintenance

100

License

Version published
Weekly downloads
3
-25%
Maintainers
1
Weekly downloads
 
Created
Issues
0

CouchDB JWT Redis Session Store

npm David Build Status

This is a Redis-backed session store for use with CouchDB JWT. If performance matters to you, this session store is recommended over the built-in CouchDB store.

Install

Install with CouchDB JWT using NPM:

npm i couchdb-jwt couchdb-jwt-store-redis --save

Usage

Pass to CouchDB JWT as a session store. Redis connection details can be passed as additional parameters.

var RedisStore = require("couchdb-jwt-store-redis");
var couchdbjwt = require("couchdb-jwt")({
	session: {
		store: RedisStore,
		url: "redis://127.0.0.1:6379"
	}
});

couchdbjwt.listen(3000);

You can pass in an existing Redis client from node_redis with the client parameter.

var RedisStore = require("couchdb-jwt-store-redis");
var client = redis.createClient();

var couchdbjwt = require("couchdb-jwt")({
	session: {
		store: RedisStore,
		client: client
	}
});

This store is also compatible with the CouchDB JWT cli.

couchdbjwt --session.store couchdb-jwt-store-redis

FAQs

Package last updated on 22 Feb 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts