@compositor/ddb
v1.0.1-0
Published
Light AWS ddb wrapper
Downloads
19
Readme
ddb
Light AWS ddb wrapper.
Installation
npm install -S @compositor/ddb
Usage
var ddb = require('@compositor/ddb')
const client = ddb('my-table')
const obj = await client.get('UUID')
obj.foo = 'bar'
await client.put('UUID', obj)
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request