@compositor/ddb

Light AWS ddb wrapper.

Usage no npm install needed!

<script type="module">
  import compositorDdb from 'https://cdn.skypack.dev/@compositor/ddb';
</script>

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

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request