Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/segment-boneyard/node-json-to-dynamo
https://github.com/segment-boneyard/node-json-to-dynamo
Last synced: about 7 hours 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 (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-08T23:59:29.000Z (almost 9 years ago)
- Last Synced: 2024-05-21T12:11:06.463Z (6 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 7
- Watchers: 12
- 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