Socket
Socket
Sign inDemoInstall

keydb

Package Overview
Dependencies
9
Maintainers
3
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.1.8 to 0.1.9

6

lib/drivers/dynamo.js

@@ -134,3 +134,7 @@ var aws = require('aws-sdk');

}
return db.createTable(schema);
return db.tableExists(tableName).then(function (exists) {
if (!exists) {
return db.createTable(schema);
}
});
};

@@ -137,0 +141,0 @@ };

2

package.json
{
"name": "keydb",
"version": "0.1.8",
"version": "0.1.9",
"description": "Key/value data/query API to use on the server and in the browser.",

@@ -5,0 +5,0 @@ "main": "index-server.js",

SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc