monocdk Experiment
An experiment to bundle all of the CDK into a single module.
⚠️ Please don't use this module unless you are interested in providing feedback about this experience.
Usage
Installation
To try out monocdk-experiment
replace all references to CDK Construct
Libraries (most @aws-cdk/*
packages) in your package.json
file with a single
entrey referring to monocdk-experiment
.
You also need to add a reference to the constructs
library, according to the
kind of project you are developing:
- For libraries, model the dependency under
devDependencies
andpeerDependencies
- For apps, model the dependency under
dependencies
only
Use in your code
Classic import
You can use a classic import to get access to each service namespaces:
; ;; new s3.Bucketstack, 'TestBucket';
Barrel import
Alternatively, you can use "barrel" imports:
;; ;; new Bucketstack, 'TestBucket';