1.0.3 • Published 1 year ago

dynamodb-push v1.0.3

Weekly downloads
-
License
ISC
Repository
github
Last release
1 year ago

dynamodb-push

dynamodb-push is an easy to use npx package to push your JSON file to AWS DynamoDB.

How to Use

In an environment with AWS credentials (aws configure), just create your JSON file and push to your table with a single command!

npx dynamodb-push -i example.json -t YourTableName

Your JSON file should look something like this, each object for each DynamoDB Row:

[
  {
    "PK": "PK|HASHKEY",
    "SK": "SK|RANGEKEY",
    "name": "Object 1",
    "description": "This is description for Object 1"
  },
  {
    "PK": "PK|HASHKEY",
    "SK": "SK|RANGEKEY",
    "name": "Object 2",
    "description": "This is description for Object 2"
  },
  ...
]
1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago