https://github.com/elegantdevelopment/aws-cdk-featureflags
An AWS CDK feature flag implementation
https://github.com/elegantdevelopment/aws-cdk-featureflags
api-gateway aws cdk dynamodb feature-flags feature-toggle lambda
Last synced: about 1 month ago
JSON representation
An AWS CDK feature flag implementation
- Host: GitHub
- URL: https://github.com/elegantdevelopment/aws-cdk-featureflags
- Owner: elegantdevelopment
- License: apache-2.0
- Created: 2020-03-02T10:10:06.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-05T08:48:53.000Z (over 3 years ago)
- Last Synced: 2025-06-23T07:17:33.376Z (12 months ago)
- Topics: api-gateway, aws, cdk, dynamodb, feature-flags, feature-toggle, lambda
- Language: TypeScript
- Size: 1.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 15
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# aws-cdk-featureflags

[](https://david-dm.org/elegantdevelopment/aws-cdk-featureflags)
[](https://www.npmjs.com/package/aws-cdk-featureflags)
[](https://badge.fury.io/js/aws-cdk-featureflags)
[](https://badge.fury.io/nu/ElegantDevelopment.AWSCDKFeatureFlags)
[](https://badge.fury.io/py/aws-cdk-featureflags)
[](https://repo1.maven.org/maven2/io/github/elegantdevelopment/AWSCDKFeatureFlags/)
An [AWS CDK] feature flag implementation
# :exclamation: WIP :exclamation:
This package is a **WORK IN PROGRESS**, please make sure you're not using this until we've reached at least v1.0.0.
## Why this package
For when you want feature flags.
## How do I use it
Install using your favourite package manager:
```sh
yarn add aws-cdk-featureflags
```
### Example TypeScript usage
```ts
import { FeatureFlags } from "aws-cdk-featureflags";
...
const featureFlags = new FeatureFlags(this, "featureflags");
new Function(this, "my-function", {
code: Code.fromAsset("./my-function"),
handler: "index.handler",
environment: {
FEATURE_FLAGS_URL: featureFlags.url
}
});
```
## Versioning
Currently pre-release. Check back when we've reached at least 1.0.0!
[aws cdk]: https://aws.amazon.com/cdk