wing icon indicating copy to clipboard operation
wing copied to clipboard

A programming language for the cloud ☁️ A unified programming model, combining infrastructure and runtime code into one language ⚡

Results 333 wing issues
Sort by recently updated
recently updated
newest added

The issue with extending classes from the SDK's TypeScript source code is related to how inheritance works at runtime. Each inflight client implementation needs to be constructed with target-specific arguments....

Today, Wing has mechanism that allows us to define and inject concrete Wing SDK resources based on the target platform defined during compilation. When authoring user defined classes today, users...

✨ enhancement
🎨 sdk
needs-discussion
📚 libraries

### Use Case https://nextjs.org/ is a massively popular framework, so it would be great to have good support for deploying a wing application with it. ### Proposed Solution `@winglibs/nextjs` ###...

✨ enhancement
needs-discussion
📚 libraries

```wing /// Some docs class Parent { // Some docs method() {}; } class Child extendes Parent { // Inherited class with no docs should use the docs from `Parent`?...

🛠️ compiler

### I tried this: ```js bring cloud; let b = new cloud.Bucket(); let myConst = "bang bang"; inflight class Foo { uploadToBucket(k: str, value: str) { b.put(k, value); } }...

🐛 bug
🛠️ compiler

### I tried this: compile and deploy this (`tf-aws`) ```wing bring ex; bring cloud; let api = new cloud.Api() as "api1"; // let ap2 = new cloud.Api() as "api2"; new...

🐛 bug
🎨 sdk
☁️ aws

### I tried this: ```wing bring cloud; let b = new cloud.Bucket(); let sqs = new cloud.Queue(); b.onCreate(inflight (f) => { sqs.push(f); }); sqs.setConsumer(inflight (m) => { log("{m}"); }); let...

🐛 bug
🛫 console

### I tried this: Typing `super.` in IDE inside a class method/init ### This happened: No completions available ### I expected this: Show protected/public members of parent classes ### Is...

🐛 bug
📡 language-server
good first issue
🔌 vscode-extension

### I tried this: I wanted to test wing code the awscdk target, I didn't have it installed on my machine. I ran: `wing test -t @winglang/platform-awscdk path-to-file` ### This...

🐛 bug
⌨️ cli
good first issue
needs-discussion
👠 platforms

A best practice when authoring Lambda functions is to use the Powertools for AWS Lambda [Logger](https://docs.powertools.aws.dev/lambda/typescript/latest/core/logger/), which allows to emit structured logs in JSON format. However, even if you choose...