Yeah I don't need top performance. I really more looking into development speed and codebase simplicity. I guess I'll give the tauri hello world samples a try and see how I like Rust from there
Good to know, I really thought Rust was full manual memory management.
Thanks for the video, will definitely give it a watch. I was lookoing for an electron vs tauri bench.
I been working on this for a while now and I just managed to deploy something functional. I’m really looking forward to get some feedback from users. Let me know your thoughts!
https://fullstacked.cloud
Been dreaming to do my web dev on an iPad Pro for some years now. Since there is many limitations due to iPadOS, I tried RDP and many web IDEs, but never got the feel I really wanted, so I started my own project.
Here's a small technical breakdown :
- xtermjs and node-pty for a smooth web terminal
- codemirror and coder/code-server (vscode) as text editors
(codemirror feels much better on iOS device and vscode is better for heavy development)
- a dynamic reverse proxy server to access internal port
(ie: reaching localhost:3000 from a public url)
- everything runs from within a docker container, so self-hosting and local installation is very easy. Plus ressource allocation is a bit simpler than with VMs.
- The web app is a PWA, so it's installable and runnable fullscreen.
Mainly, it mimics a remote desktop, but the remote host doesn't compute any graphic since it's all taken care by the client web app. And it's usable on iPad.
I'm working on a plan and system to release to the public somewhere this summer. I was wondering if there was any interest ?
I actually use StackBlitz very often to rapidely proof-of-concept some ideas. I really love what they offer.
Although, to me, it still feel like a place for code samples and examples. Limitations like native bindings, memory usage (especially on iOS) and the fact that some wasm equivalent package (like esbuild) is slower in the browser than remotely with a latency, makes StackBlitz a good tool, but not a workplace (imo).
Their implementation of the wasm nodejs is still an insane breakthrough