|
11 | 11 |
|
12 | 12 | The **DynamoDB Toolbox** is a set of tools that makes it easy to work with [Amazon DynamoDB](https://aws.amazon.com/dynamodb/) and the [DocumentClient](https://docs.aws.amazon.com/sdk-for-javascript/v2/developer-guide/dynamodb-example-document-client.html). It's designed with **Single Tables** in mind, but works just as well with multiple tables. It lets you define your Entities (with typings and aliases) and map them to your DynamoDB tables. You can then **generate the API parameters** to `put`, `get`, `delete`, `update`, `query`, `scan`, `batchGet`, and `batchWrite` data by passing in JavaScript objects. The DynamoDB Toolbox will map aliases, validate and coerce types, and even write complex `UpdateExpression`s for you. 😉
|
13 | 13 |
|
14 |
| -## Version 0.4 Alpha 🙌 |
| 14 | +## Version 0.4 Alpha 🙌 <!-- omit in toc --> |
15 | 15 |
|
16 | 16 | v0.4 is almost ready to be released and supports "Type Inferencing" 😎. Please check out the [v0.4 branch](https://github.com/jeremydaly/dynamodb-toolbox/tree/v0.4) for more information, or you can install the latest alpha version using:
|
17 | 17 |
|
@@ -162,7 +162,6 @@ If you like working with ORMs, that's great, and you should definitely give thes
|
162 | 162 |
|
163 | 163 | ## Table of Contents <!-- omit in toc -->
|
164 | 164 |
|
165 |
| -- [Version 0.4 Alpha 🙌](#version-04-alpha-) |
166 | 165 | - [Installation and Basic Usage](#installation-and-basic-usage)
|
167 | 166 | - [Features](#features)
|
168 | 167 | - [Conventions, Motivations, and Migrations from v0.1](#conventions-motivations-and-migrations-from-v01)
|
@@ -233,7 +232,6 @@ If you like working with ORMs, that's great, and you should definitely give thes
|
233 | 232 | - [Adding Custom Parameters and Clauses](#adding-custom-parameters-and-clauses)
|
234 | 233 | - [Additional References](#additional-references)
|
235 | 234 | - [Contributions and Feedback](#contributions-and-feedback)
|
236 |
| -- [Version 0.4 Alpha](#version-04-alpha) |
237 | 235 |
|
238 | 236 | ## Conventions, Motivations, and Migrations from v0.1
|
239 | 237 |
|
@@ -1290,7 +1288,3 @@ let results = await MyEntity.update(
|
1290 | 1288 | ## Contributions and Feedback
|
1291 | 1289 |
|
1292 | 1290 | Contributions, ideas and bug reports are welcome and greatly appreciated. Please add [issues](https://github.com/jeremydaly/dynamodb-toolbox/issues) for suggestions and bug reports or create a pull request. You can also contact me on Twitter: [@jeremy_daly](https://twitter.com/jeremy_daly).
|
1293 |
| -
|
1294 |
| -## Version 0.4 Alpha |
1295 |
| -
|
1296 |
| -If you'd like to try v0.4 with Type Inferencing, please check out the [v0.4 branch](https://github.com/jeremydaly/dynamodb-toolbox/tree/v0.4). |
0 commit comments