Node.js Alexa Task Issue
I\'m currently coding a Node.js Alexa Task via AWS Lambda, and I have been trying to code a function that receives informat
Check that file name and handler name are same:
That means that zip file has bundle.js file that exports handler function:
zip
bundle.js
handler
exports.handler = (event, context, callback) => {//...}