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
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,14 @@ An npm module that allows your Express.js or Connect web applications to be depl
6
6
7
7
Inspired by [aws-serverless-express](https://github.com/awslabs/aws-serverless-express)
8
8
9
+
It supports `nodejs8.10` and `nodejs10.x` execution environments.
10
+
11
+
The main differences between this module and `aws-serverless-express` are
12
+
* It's using [in-process-request](https://github.com/janaz/in-process-request) module to execute app handlers in-process without having to start background http server
13
+
* Simpler setup as it doesn't require managing the internal http server
14
+
* It's faster, because it doesn't need to pass the request to the internal server through the unix socket
15
+
* It's free from issues caused by limits in Node.js http module such as header size limit
16
+
9
17
## Usage
10
18
11
19
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