I'm interrested in the WebGPU feature.<p>With Slint [1] we're working on a framework which allow to make a desktop GUI in Javascript/Typescript, without bringing a browser/webview.
Currently, we do it by using binaries through napi-rs so we can bring in a window using the platform native API. And then we do some hack to merge the event loops.<p>But if Deno supports bringing up a window directly, this means we can just ship wasm instead of native binary for all platform. And also I hope event loop integration will be simplified.<p>Although we'd also need more API than just showing a window (mouse and keyboard input, accessibility, popup window, system tray, ...)<p>[1] <a href="https://slint.dev" rel="nofollow">https://slint.dev</a><p>Edit: I got excited a bit too early. The WebGPU feature doesn't include the API to launch a Window. One still need to rely on an extra library binary.