aws-lambda-api-tools 0.1.0 → 0.1.1
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 +22 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,27 @@
|
|
|
1
1
|
# AWS Lambda API Tools
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
> **Alpha Release Notice**: This package is currently in alpha. While it has been battle-tested in enterprise environments, the public API may undergo changes as we gather community feedback.
|
|
4
|
+
|
|
5
|
+
## Author's Note
|
|
6
|
+
|
|
7
|
+
Over the past five years, I've developed and refined this toolkit while building enterprise-grade applications on AWS. What started as a simple routing solution has evolved into a comprehensive toolkit that has successfully handled millions of requests in production environments.
|
|
8
|
+
|
|
9
|
+
This package embodies best practices learned from:
|
|
10
|
+
- Migrating from AWS CDK v1.x to v2.x
|
|
11
|
+
- Building and maintaining large-scale Lambda-based APIs
|
|
12
|
+
- Supporting multiple enterprise applications in production
|
|
13
|
+
- Implementing robust security and validation patterns
|
|
14
|
+
- Optimizing Lambda cold starts and performance
|
|
15
|
+
|
|
16
|
+
While the core functionality is stable and proven, I'm releasing this as an alpha version to gather community feedback and ensure the public API meets the needs of a broader audience.
|
|
17
|
+
|
|
18
|
+
### Coming Soon
|
|
19
|
+
- Complete example project from zero to production
|
|
20
|
+
- Step-by-step AWS account setup guide
|
|
21
|
+
- CDK infrastructure templates
|
|
22
|
+
- Performance optimization guides
|
|
23
|
+
- Advanced middleware patterns
|
|
24
|
+
- Real-world use cases
|
|
4
25
|
|
|
5
26
|
## Key Features
|
|
6
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aws-lambda-api-tools",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"build": "tsc",
|
|
12
|
-
"
|
|
12
|
+
"bump-version": "npm run build && npm version patch -m 'Updated version to %s'",
|
|
13
13
|
"test": "jest",
|
|
14
14
|
"generate-swagger": "node -r ts-node/register bin/generate-swagger.js"
|
|
15
15
|
},
|