fluent-dynamo
v1.4.0
Published
A fluent interface for Amazon DynamoDB in Node.js
Downloads
10
Maintainers
Readme
fluent-dynamo
A fluent interface for Amazon DynamoDB in Node.js
dynamo.createTable(table)
Creates a table with the specified configuration (see CreateTable). Below is an example of creating a table with a global secondary index and a local secondary index.
var fluent = require('fluent-dynamo');
var dynamo = fluent()
.withAccessKeyId('YOUR_ACCESS_KEY_ID')
.withRegion('YOUR_REGION')
.withSecretAccessKey('YOUR_SECRET_ACCESS_KEY');
dynamo.createTable('Thread')
.withHashKey('ForumName').asString()
.withRangeKey('Subject').asString()
.withReadCapacity(5)
.withWriteCapacity(5)
.withGlobalSecondaryIndex('PostCountIndex')
.withHashKey('ForumName').asString()
.withRangeKey('PostCount').asNumber()
.withReadCapacity(1)
.withWriteCapacity(1)
.withAllAttributesProjection()
.withLocalSecondaryIndex('LastPostIndex')
.withHashKey('ForumName').asString()
.withRangeKey('LastPostDateTime').asString()
.withKeysOnlyProjection()
.then(function() {
// the table was created
})
.catch(function(reason) {
// an error occurred
});
dynamo.putItem(table)
Creates a new item or replaces an existing item in the table (see PutItem). Below is an example of inserting an item with attribute conditions.
var fluent = require('fluent-dynamo');
var dynamo = fluent()
.withAccessKeyId('YOUR_ACCESS_KEY_ID')
.withRegion('YOUR_REGION')
.withSecretAccessKey('YOUR_SECRET_ACCESS_KEY');
dynamo.putItem('Thread')
.withAttribute('ForumName').asString('Amazon')
.withAttribute('Subject').asString('DynamoDB')
.withAttribute('LastPostDateTime').asString('201303190422')
.withAttribute('PostCount').asNumber(100)
.withCondition('ForumName').isNotEqualToString('Amazon')
.withCondition('Subject').isNotEqualToString('DynamoDB');
.then(function() {
// the item was inserted into the table
})
.catch(function(reason) {
// an error occurred
});
dynamo.deleteItem(table)
Deletes an item in the table (see DeleteItem). Below is an example of deleting an item with a specific hash key and range key.
var fluent = require('fluent-dynamo');
var dynamo = fluent()
.withAccessKeyId('YOUR_ACCESS_KEY_ID')
.withRegion('YOUR_REGION')
.withSecretAccessKey('YOUR_SECRET_ACCESS_KEY');
dynamo.deleteItem('Thread')
.withHashKey('ForumName').asString('Amazon')
.withRangeKey('Subject').asString('DynamoDB')
.then(function() {
// the item was deleted from the table
})
.catch(function(reason) {
// an error occurred
});
dynamo.query(table)
Searches for items in the table (see Query). Below is an example of querying for an item by a specific hash key.
var fluent = require('fluent-dynamo');
var dynamo = fluent()
.withAccessKeyId('YOUR_ACCESS_KEY_ID')
.withRegion('YOUR_REGION')
.withSecretAccessKey('YOUR_SECRET_ACCESS_KEY');
dynamo.query('Thread')
.withConsistentRead()
.withCondition('ForumName').isEqualToString('Amazon')
.then(function(items) {
// the items were found and are in the following format:
// items = [
// {
// ForumName: 'Amazon',
// Subject: 'DynamoDB',
// PostCount: 100
// },
// {
// ForumName: 'Amazon',
// Subject: 'Elastic Beanstalk',
// PostCount: 50
// }
// ];
})
.catch(function(reason) {
// an error occurred
});
dynamo.deleteTable(table)
Deletes the table (see DeleteTable). Below is an example of deleting a table by name.
var fluent = require('fluent-dynamo');
var dynamo = fluent()
.withAccessKeyId('YOUR_ACCESS_KEY_ID')
.withRegion('YOUR_REGION')
.withSecretAccessKey('YOUR_SECRET_ACCESS_KEY');
dynamo.deleteTable('Thread')
.then(function() {
// the table was deleted
})
.catch(function(reason) {
// an error occurred
});
dynamo.updateItem(table)
Updates and item in a table (see UpdateItem). Below is an example of updating an attribute in a table.
var fluent = require('fluent-dynamo');
var dynamo = fluent()
.withAccessKeyId('YOUR_ACCESS_KEY_ID')
.withRegion('YOUR_REGION')
.withSecretAccessKey('YOUR_SECRET_ACCESS_KEY');
dynamo.updateItem('Thread')
.withHashKey('ForumName').asString('Amazon')
.withRangeKey('Subject').asString('DynamoDB')
.withSetExpression('LastPostedBy').asString('[email protected]')
.withRemoveExpression('Archived')
.withCondition('LastPostedBy').isEqualToString('[email protected]')
.withAllNewReturnValues();
.then(function() {
// the "LastPostedBy" attribute is now "[email protected]"
// and the "Archived" attribute is removed
})
.catch(function(reason) {
// an error occurred
});