Chris Rybicki
Chris Rybicki
### Description For existing servers written in Node.js with Express, or front-end frameworks like Remix that support server-side rendering, it can be common to deploy these to AWS Lambda and...
### Feature Spec https://github.com/winglang/wing/blob/main/libs/wingc/src/visit.rs ### Use Cases When anyone modifies the AST structs defined [here](https://github.com/winglang/wing/blob/main/libs/wingc/src/ast.rs) it's possible the `visit` code needs to be updated, but it is not automatically done...
This doc proposes how phase-independent functions should look and behave in Winglang. Related to #435 From a compiler perspective, these functions would essentially be code generated in both the preflight...
### I tried this `npm i ngrok` ```js // repro.w bring cloud; resource Utils { init() {} extern "./repro.js" inflight start_ngrok(): str; } let utils = new Utils(); new cloud.Function(inflight...
### I tried this: I wrote this Wing program: ```js bring aws; bring cloud; class CustomQueue { queue: aws.IAwsQueue; new() { let queue = new cloud.Queue(); if let awsQueue =...
### Feature Spec Check at compile time that no public APIs at the SDK reference or used the `any` / `anything` types ### Use Cases Safer experience using Wing SDK...
### I tried this: I have a resource with a custom UI applied to its icons: ``` bring cloud; bring sim; inflight class CounterBackend impl sim.IResource { var counter: num;...
We would like to have a general way to track changes to a Wing project so that the Wing Console and other CLI commands (like `wing compile --watch` or `wing...
### I tried this: I tried importing `ui` and typing `new ui.` ### This happened: `VisualComponent` was listed as an autocompletion option If I finish the completion, `new ui.VisualComponent();` raises...
### I tried this: I was typing a docstring comment in a Wing source file in VS Code (with the Wing extension) and inside I typed a "." ### This...