node.js client for working with Amazon's DynamoDB service.
Installation
Installing npm (node package manager)
$ curl http://npmjs.org/install.sh | sh
Installing dynode
$ [sudo] npm install dynode
Motivation
Dynode is designed to be a simple and easy way to work with Amazon's DynamoDB service. Amazon's http api is complicated and non obvious how to interact with it. This client aims to offer a simplified more obvious way of working with DynamoDB, but without getting in your way or limiting what you can do with DynamoDB.
Usage
There are two different ways to use dynode: directly via the default dynamoDB client, or by instantiating your own client. The former is merely intended to be a convenient shared client to use throughout your application if you so choose.
Using the Default DynamoDB Client
The default client is accessible through the dynode module directly. Any method that you could call on an instance of a client is available on the default client:
var dynode = ;// When using the default client you must first give it auth credentialsdynode;dynode;dynode;
Instantiating your own DynamoDB Client
If you would prefer to manage your own client, potentially with different auth params:
var client = new dynodeClientaccessKeyId: "AWSAccessKey" secretAccessKey: "SecretAccessKey";
Region support
dynode supports all available DynamoDB regions. By default dynode will connect to the us-east-1 region. To connect to a different region pass in the region option when creating a client, for example:
// connect to the US West (Northern California) Regionvar client = new dynodeClientregion: "us-west-1"accessKeyId: "AWSAccessKey"secretAccessKey: "SecretAccessKey";
The default client can also connect to any region
// connect to the Asia Pacific (Tokyo) Regiondynode;
Callback Signature
Callbacks return (error, [results], meta) where results are the returned data and meta is the extra information returned by DynamoDB
API Documentation
- Auth
- Table Name Prefix
- HTTPS
- Create Table
- List Tables
- Describe Table
- updateTable
- deleteTable
- Put Item
- Update Item
- Get Item
- Delete Item
- Query
- Scan
- Batch Get Item
- Batch Write Item
- Truncate
Auth
Before you can perform any operations on DynamoDB you need to provide your Amazon credentials.
dynode;
Table Name Prefix
dynode client takes an optional tableNamePrefix in order to support running in different environments such as dev, testing, production
var client = new dynodeClientaccessKeyId: "AWSAccessKey" secretAccessKey: "SecretAccessKey" tableNamePrefix: "Dev_";
Now all operations will be performed against tables starting with that prefix, for example
client; // will create table named 'Dev_NewTable'
HTTPS
To use HTTPS for connecting to DynamoDB pass in the https option, by default dynode will use HTTP
dynode;
Create Table
The CreateTable operation adds a new table to your account. For more info see here
By default createTable
will create the given table with a primary key of id : String, a read capacity of 10 and write capacity of 5.
dynode;
createTable
accepts an options hash to override any of the table creation defaults.
var opts = read: 20 write: 25 hash: name: String range: age: Number;dynode;
List Tables
Returns an array of all the tables associated with the current account. For more info see here
By default listTables
will list all of your DynamoDB tables.
dynode;
You can also pass in options to filter which tables to list. See Amazon's docs for more info
dynode;
Describe Table
Returns information about the table, including the current status of the table, the primary key schema and when the table was created. For more info see here
dynode
Update Table
Updates the provisioned throughput for the given table. For more info see here
dynode;
Delete Table
Deletes a table and all of its items. For more info see here
dynode;
Put Item
Creates a new item, or replaces an old item with a new item (including all the attributes). For more info see here
dynode;
You can also pass in any option that Amazon accepts.
var item = name : "Bob";var options = ReturnValues:"ReturnValuesConstant" Expected :"age":"Value": "N":"42""Exists":Boolean;dynode;
Update Item
Edits an existing item's attributes. For more info see here
By default all operations will be a PUT, which will add or replace the attribute with the new value.
dynode;
updateItem
also accepts a key object to specify which item to update.
dynode;
Perform specific action to perform for the given update
var updates = nums: 'delete' : 5 age: add: 2;dynode;
Delete the attribute from an existing item
var updates = age: 'Action' : 'DELETE';dynode;
DynamoDB doesn't allow empty strings or empty sets updateItem will delete attributes when passing in null, empty string, or empty array
var updates = age: null nums: fullname: '';dynode;
updateItem
accepts options which lets you pass in any option that Amazon accepts.
var opts = ReturnValues : "ReturnValuesConstant" Expected :"status":"Value":"S":"offline";dynode;
Get Item
The getItem
operation returns a set of Attributes for an item that matches the primary key. For more info see here
dynode;
getItem
also accepts a key object to specify which item to get.
dynode;
getItem
accepts any option that Amazon accepts.
var opts = AttributesToGet: "status""friends" ConsistentRead : true;dynode;
Delete Item
Deletes a single item in a table by primary key. For more info see here
dynode;
deleteItem
also accepts a key object to specify which item to delete.
dynode;
deleteItem
accepts any option that Amazon accepts.
var opts = ReturnValues : "ALL_OLD";dynode;
Query
A Query operation gets the values of one or more items and their attributes by primary key. For more info see here
dynode;
query
accepts any option that Amazon accepts.
var opts = RangeKeyCondition: AttributeValueList :"N":"AttributeValue2""ComparisonOperator":"GT";dynode;
Scan
The Scan operation returns one or more items and its attributes by performing a full scan of a table. For more info see here
dynode;
scan
accepts any option that Amazon accepts.
var opts =Limit: 5ScanFilter : "AttributeName1":"AttributeValueList":"S":"AttributeValue""ComparisonOperator":"EQ"AttributesToGet : "AttributeName1" "AttributeName2" "AttributeName3";dynode;
Batch Get Item
The BatchGetItem operation returns the attributes for multiple items from multiple tables using their primary keys. For more info see here
var query ="ExampleTable": keys:hash: "someKey" hash: "someKey2""AnotherTable": keys:hash: "anotherKey" range: 123dynode;
batchGetItem
accepts any option that Amazon accepts.
var filter ="ExampleTable": keys:hash: "someKey" AttributesToGet :"name" "age""AnotherTable": keys:hash: "anotherKey" range: 123 AttributesToGet :"brand" "price"dynode;
Batch Write Item
The BatchWriteItem operation This operation enables you to put or delete several items across multiple tables in a single API call. For more info see here
var writes ="BatchTable":put : id : "foo" name: "bar"del : "hash-key""AnotherTable":del : hash: "somekey" range: "foo"del : hash: "another key" range: "moar foo";dynode;
Truncate
The Truncate operation will scan all items currently in the given table and remove them one by one. This has the potential to use up your write capacity, so use this call with care. note - This api is not provided directly by DynamoDB.
var options =throughputPercent : 05 // attempt to only consume 50% of write capacity, defaults to 100%;dynode;
Tests
All tests are written with mocha and should be run with make:
$ make test