Skip to content

A wrapper for AWS DynamoDB Local, intended for use in testcases

License

Notifications You must be signed in to change notification settings

rynop/dynamodb-local

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dynamodb-local

A wrapper for AWS DynamoDB Local, intended for use in testcases. Will automatically download the files needed to run DynamoDb Local.

Usage

npm install dynamodb-local --save-dev

Then in node:

var DynamoDbLocal = require('dynamodb-local');

DynamoDbLocal.launch(dynamoLocalPort, null, ['-sharedDb']); //if you want to share with Javascript Shell
//Do your tests
DynamoDbLocal.stop(8000);

See AWS DynamoDB Docs for more info on how to interact with DynamoDB Local.