Comparing version 0.17.1 to 0.17.2
{ | ||
"name": "dynalite", | ||
"version": "0.17.1", | ||
"version": "0.17.2", | ||
"description": "An implementation of Amazon's DynamoDB built on LevelDB", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -54,2 +54,13 @@ dynalite | ||
Once running, here's how you use the [AWS SDK](https://github.com/aws/aws-sdk-js) to connect | ||
(after [configuring the SDK](http://docs.aws.amazon.com/AWSJavaScriptSDK/guide/node-configuring.html)): | ||
```js | ||
var AWS = require('aws-sdk') | ||
var dynamo = new AWS.DynamoDB({endpoint: 'http://localhost:4567'}) | ||
dynamo.listTables(console.log.bind(console)) | ||
``` | ||
Installation | ||
@@ -56,0 +67,0 @@ ------------ |
144975
130