It's a rebranding of https://idx.google.com/
HN user
efxzsh
Yes they do. Google Pay or Google Earth are using Flutter. They also contribute to Kotlin Multiplatform and use it for Google Workspace (gmail, drive, etc)
Not Java, but close. With Kotlin, there is a version of Jetpack Compose (Android UI framework) ported for the Web. It's still experimental. Produced size is a bit too much (because of Kotlin/JS not being super optimized yet).
https://compose-web.ui.pages.jetbrains.team
Vaadin has been around for a while now. I don't know how people feel about it. There is still some room for them on the market. It's "just" a backend service (Spring/VertX/etc) + a UI library (Vaadin's one/etc). It could look like Next.js but for JVM languages.
Just thinking out loud.
I read Jetpack Compose will be able to support multiplatform as well. It will be a kind of flutter possible with Kotlin.
Well, it’s no surprise that google can run multiple projects that solves more or less the same thing.
What about https://svelte.technology/ ?
Ok, get it. Thx
Hmm, ok but why not
function asyncParse(string) { return new Promise(function(res, rej) { resolve(JSON.parse(string)); }); }
- or -
let asyncParse = async (string) => JSON.parse(string);