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
In my case this was caused by Node running out of memory. I fixed that by adding --memory-size 1500 to my aws lambda create-function ... command.
--memory-size 1500
aws lambda create-function ...