@vyriy/stack 0.1.20 → 0.1.22
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 +16 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,6 +6,22 @@ AWS CDK stack helpers for Vyriy projects.
|
|
|
6
6
|
|
|
7
7
|
This package keeps small, reusable CDK construction helpers close to the AWS primitives they wrap. The helpers are intentionally thin: they provide calm defaults for common Vyriy infrastructure while leaving the full CDK prop objects available to callers.
|
|
8
8
|
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
With npm:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npm install @vyriy/stack aws-cdk-lib
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
With Yarn:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
yarn add @vyriy/stack aws-cdk-lib
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
The `aws-cdk-lib` package is listed because CDK apps and bin entrypoints use CDK stack, app, prop, and resource types directly.
|
|
24
|
+
|
|
9
25
|
## API
|
|
10
26
|
|
|
11
27
|
- `s3.createBucket(scope, id, props?)` creates a private S3 bucket with static-site-friendly defaults.
|