github alexa/alexa-skills-kit-sdk-for-nodejs v1.0.25
Enable customized dynamoDB client, fix typos and bump version to 1.0.25

latest releases: v2.14.0, v2.12.1, v2.12.0...
6 years ago

This release added a dynamoDBClient property in alexaRequestHandler so that developer can use their own dynamoDB client, if the dynamDBClient is null, then it will use the default one. The example code of inserting dynamoDB client is as blow:

exports.handler = function(event, context, callback) {
    const alexa = Alexa.handler(event, context);
    alexa.dynamoDBClient = new aws.DynamoDB({
         endpoint: "http://localhost:8000",
         apiVersion: '2012-08-10'
     });
     ...
}

Don't miss a new alexa-skills-kit-sdk-for-nodejs release

NewReleases is sending notifications on new releases.