Which NPM modules are preinstalled in AWS Lambda execution environment?
问题 Recently I found that aws-sdk NPM module is preinstalled in AWS Lambda nodejs8.10. And I can't find any information in the internet about it. Which other node.js modules are pre-installed in AWS Lambda? 回答1: Only the aws-sdk package is preinstalled . All the rest is loaded from the "node_modules" directory.. You can find information about it here: https://docs.aws.amazon.com/lambda/latest/dg/nodejs-create-deployment-pkg.html 回答2: I've used the "https" and the "url" package, so those at least