sessionstore
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -1,11 +0,7 @@ | ||
// lib/databases/nStore.js v0.0.1 | ||
// (c) 2012 Adriano Raiano (adrai); under MIT License | ||
var util = require(process.binding('natives').util ? 'util' : 'sys') | ||
, Session = require('express').session | ||
, _ = require('underscore') | ||
, _ = require('lodash') | ||
, async = require('async') | ||
, cradle = require('cradle'); | ||
var CouchDbSessionStore = function(options, callback) { | ||
@@ -12,0 +8,0 @@ options = options || {}; |
@@ -1,4 +0,1 @@ | ||
// lib/databases/mongoDb.js v0.0.1 | ||
// (c) 2012 Adriano Raiano (adrai); under MIT License | ||
var util = require(process.binding('natives').util ? 'util' : 'sys') | ||
@@ -8,3 +5,3 @@ , Session = require('express').session | ||
, ObjectID = mongo.BSONPure.ObjectID | ||
, _ = require('underscore'); | ||
, _ = require('lodash'); | ||
@@ -11,0 +8,0 @@ function cleanSessionData(json) { |
@@ -1,10 +0,6 @@ | ||
// lib/databases/nStore.js v0.0.1 | ||
// (c) 2012 Adriano Raiano (adrai); under MIT License | ||
var util = require(process.binding('natives').util ? 'util' : 'sys') | ||
, Session = require('express').session | ||
, _ = require('underscore') | ||
, _ = require('lodash') | ||
, nStore = require('nstore'); | ||
var NStoreSessionStore = function(options, callback) { | ||
@@ -11,0 +7,0 @@ options = options || {}; |
@@ -1,4 +0,1 @@ | ||
// lib/sessionstore.js v0.0.1 | ||
// (c) 2012 Adriano Raiano (adrai); under MIT License | ||
function getSpecificStore(options) { | ||
@@ -5,0 +2,0 @@ options = options || { type: 'inMemory' }; |
{ | ||
"author": "adrai", | ||
"name": "sessionstore", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"private": false, | ||
@@ -15,3 +15,3 @@ "main": "index.js", | ||
"async": ">= 0.1.18", | ||
"underscore": ">= 1.3.3" | ||
"lodash": ">= 0.4.2" | ||
}, | ||
@@ -18,0 +18,0 @@ "devDependencies": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16124
327
+ Addedlodash@>= 0.4.2
+ Addedlodash@4.17.21(transitive)
- Removedunderscore@>= 1.3.3
- Removedunderscore@1.13.7(transitive)