Passkey required
All you need for d is also to make a DynamoDB object to connect
var ddb = require('dynamodb').ddb({ accessKeyId: '< your_access_key_id >', secretAccessKey: '< your_secret_access_key >' });
put this under your statements of need, turn on the server. Then you can simply fill in the routes to perform CRUD operations.
For testing use
ddb.listTables({}, function(err, res) {console.log(res);});
All tables in your db will be listed here.
for full source check here
Good luck
source share