Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

atlassian-connect-express-redis

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

atlassian-connect-express-redis - npm Package Compare versions

Comparing version 0.1.1 to 0.1.2

2

package.json
{
"name": "atlassian-connect-express-redis",
"version": "0.1.1",
"version": "0.1.2",
"description": "Redis adapter for Atlassian Connect Express",

@@ -5,0 +5,0 @@ "main": "redis.js",

@@ -12,3 +12,4 @@ # Atlassian Connect Express Redis Adapter

"store": {
"adapter": "redis"
"adapter": "redis",
"url": "redis://user:password@localhost:6379"
}

@@ -15,0 +16,0 @@

@@ -11,4 +11,8 @@ var url = require('url');

var connectUrl = url.parse(opts.url);
self.client = redis.createClient(connectUrl.port, connectUrl.hostmane, {
auth_pass: connectUrl.auth
var pwd = null;
if(connectUrl.auth) {
pwd = connectUrl.auth.split(':')[1];
}
self.client = redis.createClient(connectUrl.port, connectUrl.hostname, {
auth_pass: pwd
});

@@ -15,0 +19,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