@awboost/ddb-table-client
v0.1.0
Published
This package is intended as an (almost) drop-in replacement for [@aws-sdk/lib-dynamodb](https://npmjs.com/package/@aws-sdk/lib-dynamodb), with the only difference being that you don't have to specify the table on every command. Instead you specify the tab
Downloads
8
Readme
@awboost/ddb-table-client
This package is intended as an (almost) drop-in replacement for @aws-sdk/lib-dynamodb, with the only difference being that you don't have to specify the table on every command. Instead you specify the table once for the client object.
This makes it easier to implement single-table design.
Documentation
See documentation.
Example
import { DynamoDBClient } from '@aws-sdk/client-dynamodb';
import { DynamoDBTableClient, GetCommand } from '@awboost/ddb-table-client';
const client = new DynamoDBClient({});
const tableClient = DynamoDBTableClient.from(client, {
tableName: 'mytable',
});
const result = await tableClient.send(
new GetCommand({
// look, no TableName property!
Key: { id: '1234' },
}),
);