wing
wing copied to clipboard
A programming language for the cloud ☁️ A unified programming model, combining infrastructure and runtime code into one language ⚡
### I tried this: 1. Check if a `Json` is an array: `if Json.isArray(j)` 2. Iterate on a Json array: `for x in json` ### This happened: Not supported ###...
### Use Case It will behoove us for each Wing app to have a unique-ish root identifier. Since the root identifier is the basis for calculating all other generated names....
### I tried this: Update SDK doc like https://github.com/winglang/wing/blob/main/docs/docs/04-standard-library/cloud/secret.md in PR and merge it ### This happened: Main build fails due to self mutation (it undoes the changes) ### I...
### Use Case We want to make sure that issues raised by external contributors get the attention they deserve (SLA should be around 24 hours). ### Proposed Solution Some kind...
### I tried this: wing test -t sim test/*.test.w ### This happened:  ### I expected this: The whole test suite to run completely ### Is there a workaround? I...
### I tried this: wing run -t sim src/outside/BlueZoneApplication.main.w ### This happened:  While the endpoint appears on the left side, there is no API, Function, or Table Resources I...
### Use Case you can now create a bucket with a name ### Proposed Solution ```wing new cloud.Bucket(name: "a-globally-unique-name-or-it-will-fail-when-trying-to-deploy-on-aws") ; ``` ### Implementation Notes _No response_ ### Component SDK ###...
Last update was in April: https://github.com/winglang/wing/pull/6222
### Use Case Need to quickly find and/or filter arrays. ### Proposed Solution Common examples in JS: ``` const matches = users.find((user) => user.email == "[email protected]")); ``` ### Implementation Notes...