https://github.com/lukehedger/wing-cdk
Creating CDK apps with Wing
https://github.com/lukehedger/wing-cdk
aws cdk wing
Last synced: about 1 year ago
JSON representation
Creating CDK apps with Wing
- Host: GitHub
- URL: https://github.com/lukehedger/wing-cdk
- Owner: lukehedger
- Created: 2024-03-04T22:05:54.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-05T20:42:05.000Z (about 2 years ago)
- Last Synced: 2025-02-09T15:17:48.080Z (over 1 year ago)
- Topics: aws, cdk, wing
- Language: CWeb
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# wing-cdk
Using Wing to author AWS apps and deploy to CloudFormation via CDK.
## Prerequisites
- [Install Wing](https://www.winglang.io/docs/)
- [Install AWS CDK Toolkit](https://docs.aws.amazon.com/cdk/v2/guide/cli.html)
## Install dependencies
```sh
npm install
```
## Run locally
Start the [Wing Console](https://www.winglang.io/docs/start-here/local):
```sh
npm start
```

## Test Wing app
```sh
npm test
```
## Build Wing app
```sh
npm run build
```
\* Compiles the Wing app to an AWS CloudFormation stack
## Deploy Wing app
```sh
npm run deploy
```
\* Uses the AWS CDK Toolkit to deploy the Wing app to AWS
## Resources
- [Wing -> CDK](https://www.winglang.io/docs/tools/cli#awscdk-platform)
- [More examples](https://github.com/winglang/examples/tree/main/examples/provider-specific/awscdk-hello-wing)
- [Wing](https://www.winglang.io/)
- [AWS CDK](https://aws.amazon.com/cdk/)