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.0 to 0.1.1

.npmignore

3

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

@@ -8,2 +8,3 @@ "main": "redis.js",

"redis": "~0.10.0",
"hiredis": "~0.1.0",
"rsvp": "~3.0.3"

@@ -10,0 +11,0 @@ },

@@ -0,1 +1,2 @@

var url = require('url');
var RSVP = require('rsvp');

@@ -5,5 +6,10 @@ var redis = require("redis");

function Redis(logger, opts) {
opts = opts || {};
opts = opts || {
url: 'redis://localhost:6379'
};
var self = this;
self.client = redis.createClient();
var connectUrl = url.parse(opts.url);
self.client = redis.createClient(connectUrl.port, connectUrl.hostmane, {
auth_pass: connectUrl.auth
});
}

@@ -10,0 +16,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