@travetto/web-aws-lambda 6.0.2 → 6.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ npm install @travetto/web-aws-lambda
|
|
|
13
13
|
yarn add @travetto/web-aws-lambda
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
-
This module provides an adapter between [Web API](https://github.com/travetto/travetto/tree/main/module/web#readme "Declarative
|
|
16
|
+
This module provides an adapter between [Web API](https://github.com/travetto/travetto/tree/main/module/web#readme "Declarative support for creating Web Applications") and [AWS Lambda](https://aws.amazon.com/lambda/). The event-driven invocation model for [Web API](https://github.com/travetto/travetto/tree/main/module/web#readme "Declarative support for creating Web Applications") aligns cleanly with [AWS Lambda](https://aws.amazon.com/lambda/)'s model for event-driven operation.
|
|
17
17
|
|
|
18
18
|
**NOTE:** The only caveat to consider, is that while the framework supports streams for responses, [AWS Lambda](https://aws.amazon.com/lambda/) does not. Any streaming result will be read and converted into a [Buffer](https://nodejs.org/api/buffer.html) before being sent back.
|
|
19
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@travetto/web-aws-lambda",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.3",
|
|
4
4
|
"description": "Web APIs entry point support for AWS Lambdas.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"directory": "module/web-aws-lambda"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@travetto/web": "^6.0.
|
|
29
|
-
"@types/aws-lambda": "^8.10.
|
|
28
|
+
"@travetto/web": "^6.0.3",
|
|
29
|
+
"@types/aws-lambda": "^8.10.155"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|
|
32
|
-
"@travetto/cli": "^6.0.
|
|
33
|
-
"@travetto/pack": "^6.0.
|
|
34
|
-
"@travetto/test": "^6.0.
|
|
32
|
+
"@travetto/cli": "^6.0.1",
|
|
33
|
+
"@travetto/pack": "^6.0.1",
|
|
34
|
+
"@travetto/test": "^6.0.2"
|
|
35
35
|
},
|
|
36
36
|
"peerDependenciesMeta": {
|
|
37
37
|
"@travetto/test": {
|