Socket
Socket
Sign inDemoInstall

connect-redis

Package Overview
Dependencies
Maintainers
0
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

connect-redis - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

5

History.md
1.0.1 / 2011-04-14
==================
* Added authentication support [garrensmith]
1.0.0 / 2011-02-25

@@ -3,0 +8,0 @@ ==================

@@ -32,2 +32,8 @@

this.client = new redis.createClient(options.port, options.host, options);
if (options.pass) {
client.auth(options.pwd, function(err){
if (err) throw err;
});
}
if (options.db) {

@@ -34,0 +40,0 @@ var self = this;

2

package.json
{
"name": "connect-redis",
"description": "Redis session store for Connect",
"version": "1.0.0",
"version": "1.0.1",
"author": "TJ Holowaychuk <tj@vision-media.ca>",

@@ -6,0 +6,0 @@ "main": "./index.js",

@@ -19,2 +19,3 @@

- `db` Database index to use
- `pass` Password for Redis authentication
- ... Remaining options passed to the redis `createClient()` method.

@@ -21,0 +22,0 @@

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