Skip to content

v1.0.0

Compare
Choose a tag to compare
@marcalpla marcalpla released this 05 Feb 22:41
· 5 commits to master since this release

Initial release of DynamoDB CRUD Lite, a JavaScript library for simplified CRUD operations on DynamoDB tables

  • Includes functions for creating, updating, deleting, querying, and scanning items in a DynamoDB table.
  • Automatically adds attributes id, createdAt, and updatedAt when creating an item and updates updatedAt when updating an item.
  • Supports querying items by id, by index name, or by scanning the entire table.
  • Returns results of query and scan operations as an array of items, with a LastEvaluatedKey property.
  • Query and scan operations also supports filtering items using a filter expression and attribute names and values mapping.