dynamodb-local
A wrapper for AWS DynamoDB Local, intended for use in testcases. Will automatically download the files needed to run DynamoDb Local.
Usage
Note: this module was developed using a few ES6 features (const,let,native Promise). It is highly recomended to use io.js with this module because of its ES6 features
npm install dynamodb-local --save
Then in node:
var DynamoDbLocal = require('dynamodb-local');
DynamoDbLocal.launch(dynamoLocalPort, null, ['-sharedDb']);
DynamoDbLocal.stop(8000);
See AWS DynamoDB Docs for more info on how to interact with DynamoDB Local.