wing
wing copied to clipboard
A programming language for the cloud ☁️ A unified programming model, combining infrastructure and runtime code into one language ⚡
### Use Case At the moment we have part of the docs site in this repo and most of it over on the https://github.com/winglang/docsite. Docs are in this repo as...
### Use Case Using the Table UI component (using DynamoDB winglib), it would be nice to force refresh on the table data. When I'm adding information through my web application...
We want to use `as` for casting, so let's revisit the way we specify an identifier for preflight objects. One option is to replace the current usage with `is`: ```js...
### Use Case Using the recently added [advanced logging controls for AWS lambda functions](https://aws.amazon.com/blogs/compute/introducing-advanced-logging-controls-for-aws-lambda-functions/), two new options are introduced in `wing.toml` for `tf-aws` platform: - `lambda_logs_aggregate` (boolean) - Allows to...
### I tried this: ```ts bring cloud; bring http; let api = new cloud.Api(); test "api should return 200 on /health-check" { assert( http.get(api.url + "/health-check"). //
### I tried this: specifying the `rootId` in combination with `noClean`, e.g. ``` wing test --rootId cors --no-clean -t tf-aws api_cors_custom.w ``` ### This happened: ``` ... One or more...
### Feature Spec It's now possible to use Wing on arm64 architectures. ### Use Cases Was trying to build Wing on a https://aws.amazon.com/ec2/instance-types/c7g/ instance via https://github.com/loft-sh/devpod ### Implementation Notes ```...
### I tried this: ``` bring cloud; let counter = new cloud.Counter(); let k = "foo"; counter.inc(key: k); ``` ### This happened: ```sh | counter.inc(key: k); | ^^^^^^^^^^^^^^^^^^^ No named...
### I tried this: Empty main.w and a p.js: ```js exports.Platform = class MyPlatform { postSynth(config) { console.log('postSynth'); return config; } } ``` Install `@winglang/platform-awscdk` Then run `CDK_STACK_NAME="g" wing compile...
### Use Case Now that `bring ui` is all the rave, let’s add a pack of additional widgets so we can move towards a vision of a fully self contained...