begin-data
begin-data copied to clipboard
A durable and fast key/value store for Begin built on top of DynamoDB
Bumps [@aws-lite/client](https://github.com/architect/aws-lite) from 0.17.3 to 0.21.1. Changelog Sourced from @aws-lite/client's changelog. [0.21.1] 2024-04-26 Fixed Allow paginator to accept nested tokens Because XML, of course [0.21.0] 2024-04-25 Added Added streamResponsePayload request...
Bumps [eslint](https://github.com/eslint/eslint) from 8.57.0 to 9.1.1. Release notes Sourced from eslint's releases. v9.1.1 Bug Fixes a26b402 fix: use @eslint/create-config latest (#18373) (唯然) v9.1.0 Features 03068f1 feat: Provide helpful error message...
Currently, if the `data` table required by Begin Data is not present, you may get an unhelpful error such as ``` /path/to/project/node_modules/@aws-lite/client/src/error.js:13 let err = error instanceof Error ? error...
(node:92682) [DEP0128] DeprecationWarning: Invalid 'main' field in '@begin/data/package.json' of 'src/index.js'. Please either fix that or report it to the module author (Use `node --trace-deprecation ...` to show where the warning...
Common feedback that folks want a scoped factory constructor for begin/data. Usage as follows: ```javascript let { Table, factory } = require('@begin/data') // constructor style let cats = new Table('cats')...
Is there a way to support the `begin` param on a bulk get call? This works for a single get (as per the integration tests): ```js let sept = await...
Begin Data allows you to either `set` a single document, or an array of documents. But the array is limited to 25 documents. If you want to write, say, 532...
I would love to be able to pass through a secondary index to both speed things up and filter out stuff I don't need. Here's my specific use-case... I have...