GitHub - 4front/dynamodb: DynamoDb database provider for 4front multi-tenant web app platform

4front-dynamo

DynamoDB based metadata repository for the 4front web platform. The metadata repository is used to persist information about virtual apps, organizations, users, app versions, environments, and more. Uses the excellent vogels object mapper package internally.

Installation

npm install 4front-dynamo

Usage

var dynamoDb = require('4front-dynamodb')({
	region: 'us-west-2',

	// optional map used to
	modelExtensions: {
	},
	tablePrefix: ''
});

You can pass in any valid option accepted by the AWS.config object including region, accessKeyId, secretAccessKey, etc.

Running Tests

The tests rely on DynamoDB Local to be running.