我正在设置AWS Lambda。添加成功。在测试时我收到了这个错误。我是这样的样本:
http://jice.lavocat.name/blog/2015/image-conversion-using-amazon-lambda-and-s3-in-node.js/
{
"errorMessage": "Cannot find module '/var/task/imageSyncing'",
"errorType": "Error",
"stackTrace": [
"Function.Module._load (module.js:417:25)",
"Module.require (module.js:497:17)",
"require (internal/module.js:20:19)"
]
}
答案 0 :(得分:2)
您尚未正确创建部署包。我怀疑你压缩了项目目录而不是目录的内容。
您的zip文件应该只包含js
个文件和node_modules
,而不是您放置它们的目录。