New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

redisess

Package Overview
Dependencies
Maintainers
2
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

redisess - npm Package Compare versions

Comparing version 1.4.0 to 1.5.0

2

package.json
{
"name": "redisess",
"description": "Powerful redis session manager for NodeJS",
"version": "1.4.0",
"version": "1.5.0",
"author": "Panates Ltd.",

@@ -6,0 +6,0 @@ "contributors": [

@@ -19,9 +19,10 @@

Redisess requires a redis client library to work.
It has been tested for both [node-redis](https://www.npmjs.com/package/node-redis) and
[ioredis](https://www.npmjs.com/package/ioredis) libraries.
It has been tested for [redis](https://www.npmjs.com/package/redis),
[node-redis](https://www.npmjs.com/package/node-redis) and
[ioredis](https://www.npmjs.com/package/ioredis) client libraries.
```bash
$ npm install node-redis redisess --save
$ npm install redis redisess --save
```
or
or

@@ -32,2 +33,9 @@ ```bash

or
```bash
$ npm install node-redis redisess --save
```
## Basic Usage

@@ -42,5 +50,5 @@

const redis = new Redis();
const client = new Redis();
const manager = new SessionManager(redis, {
const manager = new SessionManager(client, {
namespace: 'myapp',

@@ -47,0 +55,0 @@ additionalFields: ['groupId'],

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc