You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# lambda-request-handler
2
2
3
-
An npm module that allows your Node.js web applications to be deployed as an AWS Lambda function.
3
+
An npm module that allows your Node.js web applications to be deployed as an AWS Lambda function and invoked in response to API Gateway or Application Load Balancer requests.
@@ -21,6 +21,10 @@ The main differences between this module and `aws-serverless-express` are
21
21
* It's faster, because it doesn't need to pass the request to the internal server through the unix socket
22
22
* It's free from issues caused by limits in Node.js http module such as header size limit
23
23
24
+
The handler supports events from the following sources:
25
+
- API Gateway
26
+
- Application Load Balancer
27
+
24
28
## Usage
25
29
26
30
The default export of `lambda-request-handler` is a function that takes an application handler (i.e. Express.js app instance) as an argument and returns an AWS Lambda handler function.
0 commit comments