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

dynamodb-localhost

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dynamodb-localhost - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

0

dynamodb/config.json

@@ -0,0 +0,0 @@ {

@@ -0,0 +0,0 @@ 'use strict';

2

dynamodb/starter.js

@@ -11,3 +11,3 @@ 'use strict';

port = options.port || config.start.port,
db_dir = utils.absPath(config.setup.install_path),
db_dir = options.install_path || utils.absPath(config.setup.install_path),
jar = config.setup.jar;

@@ -14,0 +14,0 @@

@@ -7,4 +7,8 @@ 'use strict';

var absPath = function (relPath) {
return path.dirname(__filename) + '/' + relPath;
var absPath = function (p) {
if (path.isAbsolute(p)) {
return p;
} else {
return path.join(path.dirname(__filename), p);
}
};

@@ -11,0 +15,0 @@

@@ -0,0 +0,0 @@ 'use strict';

{
"name": "dynamodb-localhost",
"version": "0.0.5",
"version": "0.0.6",
"engines": {

@@ -5,0 +5,0 @@ "node": ">=4.0"

@@ -0,0 +0,0 @@ dynamodb-localhost

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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