JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q43176F
  • License ISC

A lib to simplify working with dynamodb document client in aws sdk v3.

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@mhlabs/dynamodb-client) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    dynamodb-client

    A library simplifying working with dynamodb client in aws sdk v3.

    Integration tests

    The integration tests are not automated or part of the build (yet...). To run them locally, make sure to have docker installed and then:

    docker run -v $(pwd)/data:/data -p 8000:8000 amazon/dynamodb-local -jar DynamoDBLocal.jar -sharedDb -dbPath /data

    npm run integration-tests

    To avoid having the data folder be created in different places, creating a folder like ~/dynamo and a script in it like below, and then starting the db by running the script will keep everything within that folder.

    #!/bin/sh
    docker run -v $(pwd)/data:/data -p 8000:8000 amazon/dynamodb-local -jar DynamoDBLocal.jar -sharedDb -dbPath /data