cdk-local-lambda 0.1.3 → 0.1.5

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -11,6 +11,12 @@ Run Lambda functions from your CDK stack locally. Edit your code and see changes
11
11
  | Python | Not yet supported |
12
12
  | Java | Not yet supported |
13
13
 
14
+ ## Comparison with SST v2
15
+
16
+ This project provides similar live Lambda development capabilities to [SST v2's Live Lambda Dev](https://v2.sst.dev/live-lambda-development), but with a key difference: **cdk-local-lambda works with vanilla CDK**.
17
+
18
+ SST v2 requires adopting SST's stack conventions and constructs. With cdk-local-lambda, you keep your existing CDK code as-is—just add the bootstrap import and apply the aspect.
19
+
14
20
  ## Installation
15
21
 
16
22
  ```bash
package/package.json CHANGED
@@ -85,7 +85,7 @@
85
85
  "publishConfig": {
86
86
  "access": "public"
87
87
  },
88
- "version": "0.1.3",
88
+ "version": "0.1.5",
89
89
  "bugs": {
90
90
  "url": "https://github.com/processfocus/cdk-local-lambda/issues"
91
91
  },