0.1.0 • Published 2 years ago

@squareball/ddb-table-client v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@squareball/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 '@squareball/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' },
  }),
);