Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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