AWS DynamoDB
The AWS DynamoDB can be used as database for StoryBooker.
Install
npm i @storybooker/aws @aws-sdk/client-dynamodb
Usage
import { DynamoDBClient } from "@aws-sdk/client-dynamodb";
import { AwsDynamoDatabaseService } from "@storybooker/aws/dynamo-db";
// Initialize the DynamoDBClient
const client = new DynamoDBClient(...)
// Create the service adapter
const database = new AwsDynamoDatabaseService(client);
// use as `database` in StoryBooker hosting options.