Fluent syntax generator for DynamoDB.
npm install jedlik

Jedlik uses a fluent interface to produce DynamobDB query syntax:
``javascript
var Jedlik = require('jedlik'), jedlik = new Jedlik();
var query = jedlik
.tablename('table_name')
.hashkey('hash', 'hashvalue')
.rangekey('range', 'rangevalue', 'BEGINS_WITH')
.get(['attributes', 'attribute'])
.query;
`Methods
The name of the table containing the requested items.
Accepts a key, a value and an optional ComparisonOperator which defaults to EQ
Same as hashkey.
.rangekeyBetween([keyName], [fromValue], [toValue])
Use only with query
Accepts an array of attributes to get.
Returns the constructed JSON query.
Returns the constructed JSON putItem.
).expected([keyName], [expectedValue], [comparisonOperator])Use only with
update`