Which aws sdk to use?

I want to use the dynamodb SDK for nodejs. Which SDK is this, can someone please post a link to the current api? I thought this link showed the most recent ones:

http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB.html

But according to

https://github.com/aws/aws-sdk-js/blob/master/UPGRADING.md

Anything using the .Client attributes is old. I am confused which is the most relevant. For example, should I use dynamodb.get or dynamodb.getItem to get items?

+3
node.js sdk amazon-web-services amazon-dynamodb aws-sdk


source to share


1 answer


According to github, you should use below link for DynamoDB -

http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/DynamoDB/DocumentClient.html



There is also a tutorial to get started with the new dynamoDB SDK -

http://blogs.aws.amazon.com/javascript/post/Tx1OVH5LUZAFC6T/Announcing-the-Amazon-DynamoDB-Document-Client-in-the-AWS-SDK-for-JavaScript

+2


source to share







All Articles