|
|
|
|
|
by TobyTheDog123
1344 days ago
|
|
My usual project stack is React Native (+React Native Web) to cover iOS/Android/Windows/Mac/Web all in one repo, with serverless functions (Workers/C@E/etc) on the API side in another, and with shared types between the two as a third. However I have different business goals where I can actually take some time to choose a non-TS stack... ... but unfortunately with those kind of goals/restrictions the choices aren't really there, afaik. On the client-side, you have Flutter, which is cool enough (No JS, everything in a canvas), but I'm not Dart's biggest fan, and there's no Dart WASM target yet to be able to write in one language for both (and share types). On the server-side, most cloud companies only support Javascript + Rust + WASM, and WASM just isn't mature enough yet where it's not a total pain to work with (I think it'll get there at some point though) So I'm left pretty much where you are, my last and only hope is a Typescript monorepo. |
|