Convert DynamoDB JSON to and from regular JSON, with the added ability of converting arrays
{
"string": {"S": "foo"},
"list": {"L": [{"S": "fizz"}, {"S": "buzz"}, {"S": "pop"}]},
"map": {
"M": {
"nestedMap": {
"M": {
"key": {"S": "value"}
}
}
}
},
"number": {"N": "123"},
"nullValue": {"NULL": true},
"boolValue": {"BOOL": true}
}
{
"string": "foo",
"list": [
"fizz",
"buzz",
"pop"
],
"map": {
"nestedMap": {
"key": "value"
}
},
"number": 123,
"nullValue": null,
"boolValue": true
}
This project is bootstrapped using create-next-app
yarn start
Contributions, issues and feature requests are welcome!
Feel free to check issues page
Give a ⭐️ if this project helped you!
Copyright © 2021 Benjamin Pickford.
This project is MIT licensed.