keyv-dynamodb
v1.1.1
Published
Dynamo DB storage for the Keyv project
Downloads
174
Readme
const keyvDynamoDb = new KeyvDynamoDb({ tableName: 'KeyvStore', clientOptions: { // Any options here will be passed to the DynamoDB client. region: 'eu-central-1', }, }); keyvDynamoDb.on('error', handleConnectionError);
const keyvDynamoDb = new KeyvDynamoDb({ tableName: 'KeyvStore', clientOptions: { // Any options here will be passed to the DynamoDB client. region: 'eu-central-1', }, }); const keyv = new Keyv({ store: keyvDynamoDb });