Skip to content

segment-boneyard/node-json-to-dynamo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

json-to-dynamo

Convert JSON to a DynamoDB-friendly representation.

Example

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published