我有一个.zip文件,其中包含node_modules和utils文件夹,
我将.zip上传到AWS Lambda Layer上,但无法获取AWS Lambda函数的所有依赖项,
我相信问题可能与package.json有关,但是
我尝试使用npm install
命令删除node_modules,package-lock.json并重新安装依赖项。
依赖项似乎是在本地下载的,但是当我将它们上传到Layers时,它们就消失了。
package.json-
{
"name": "serverless-currency",
"version": "1.0.0",
"description": "Lambda APIs for G2G Currency Module",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "SLS_DEBUG=* sls offline start"
},
"author": "Aniruddha Raje",
"license": "ISC",
"dependencies": {
"async": "^2.6.2",
"aws-sdk": "^2.447.0",
"axios": "^0.18.0",
"cryptr": "^4.0.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"serverless-offline": "^4.9.4",
"util": "^0.12.0"
}
}
AWS Lambda代码-
var fs = require('fs');
var async = require('async');
exports.handler = async (event) => {
const testFolder = '/opt/layer/node_modules';
fs.readdirSync(testFolder).forEach(file => {
console.log(file);
});
};
Lambda错误-
{
"errorMessage": "Cannot find module 'async'",
"errorType": "Error",
"stackTrace": [
"Function.Module._load (module.js:474:25)",
"Module.require (module.js:596:17)",
"require (internal/module.js:11:18)",
"Object.<anonymous> (/var/task/index.js:2:13)",
"Module._compile (module.js:652:30)",
"Object.Module._extensions..js (module.js:663:10)",
"Module.load (module.js:565:32)",
"tryModuleLoad (module.js:505:12)",
"Function.Module._load (module.js:497:3)"
]
}
参考-
https://medium.com/@anjanava.biswas/nodejs-runtime-environment-with-aws-lambda-layers-f3914613e20e
是否必须将根文件夹命名为nodejs
,以便可以使用let async = require('async')
导入直接访问node_module库,
这样代码无需指定/ opt / node_modules / async路径?
指定绝对路径后,代码运行没有错误。
答案 0 :(得分:0)
您的目录结构错误。在正式文档(here)中,您需要一个目录,其结构类似于layer/nodejs/node_modules
,nodejs
目录名称不是随机的,必须为nodejs
layer
|
|__nodejs
|
|__node_modules
|
|__node_module1
|
|__async
现在,您需要将nodejs
目录压缩到nodejs.zip
(或任何您想要的内容)并使用此文件创建图层。