Skip to content

muenzer/claudiajs-dynamodb

Repository files navigation

claudiajs-dynamodb

Wrapper code for calling the dynamodb api from within a lambda function. Intended for use with an api built using Claudia.js (http://claudiajs.com). Based on the dynamodb example (https://github.com/claudiajs/example-projects/blob/master/dynamodb-example/index.js)

Example usage

Configuration

var lib = require('claudiajs-dynamodb');

var dynamoconfig = {
  region: "us-east-1"
};

dynamo = new lib.dynamo(dynamoconfig);
dynamo.tableName = "test";

Create Item

var data = {
  name: "foo",
  number: "5",
  sort: "A"
};

//returns a promise from the AWS API
var response = lib.create(data, dynamo);

response.then(function (response) {
  console.log(response);
});

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published