https://github.com/segment-boneyard/node-json-to-dynamo
https://github.com/segment-boneyard/node-json-to-dynamo
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/segment-boneyard/node-json-to-dynamo
- Owner: segment-boneyard
- Created: 2015-12-08T22:32:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-08T23:59:29.000Z (over 9 years ago)
- Last Synced: 2025-04-13T14:05:53.231Z (3 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 7
- Watchers: 11
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# json-to-dynamo
Convert JSON to a DynamoDB-friendly representation.
## Example
```js
var convert = require('json-to-dynamo');var obj = {
foo: true,
bar: {
baz: null
}
};convert(obj);
//=> { foo: { BOOL: true }, bar: { M: { baz: { NULL: true } } } }
```## License
MIT