I\'ve created several Lambda functions using the web based editor. So far so good. I\'d now like to start extending those with modules (such as Q for promises). I can\'t fig
Hope this helps, with Serverless framework you can do something like this:
plugins:
- serverless-webpack
custom:
webpackIncludeModules:
forceInclude:
-
2. Then create your Lambda function, deploy it by serverless deploy, the package that included in serverless.yml will be there for you.
For more information about serverless: https://serverless.com/framework/docs/providers/aws/guide/quick-start/