0.0.13 • Published 7 years ago

@mizchi/dynamodb-local v0.0.13

Weekly downloads
1
License
-
Repository
github
Last release
7 years ago

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.