A new cross-platform solution for Web developers
11–20 of 24 posts
Re: A new cross-platform solution for Web developers
#12Re: A new cross-platform solution for Web developers
#13Re: A new cross-platform solution for Web developers
#14Earlier quoted context omitted.
We officially support iOS, Android, MacOS, Linux, Windows, XBox, Android TV, and unofficially a few others that are in-progress (Apple Watch, ChromeOS). We should definitely put a list somewhere on the site.
Seems like Socket's mobile platform support is more mature than Tauri's to me. Are there other benefits to solo devs or small teams choosing Socket over Tauri beyond that and not having to write Rust to interact with the underlying system?
In terms of security, an optional Main process means a smaller surface area to worry about when considering your end-user's safety.
Historically, the super strict separation of UI and Main was implemented as a security precaution. For example, you didn’t want the front end doing naughty things to your file system, because after all, who knows when a rouge request might be somehow injected or some data may be unescaped. But in reality it didn't resolve the problem, it just moved the risk into Main - where the same problems still exist, because Main is an arbitrary binary with many most likely unaudited, transient dependencies, and unmitigated access to the OS.
We reduced the overall surface area and locked it down with CSP (a web standard) to granularly control 100% of the native capabilities. In other words, there is less solution-specific ceremony to spend time on, you get to focus on your real problems.
Re: A new cross-platform solution for Web developers
#15Earlier quoted context omitted.
We officially support iOS, Android, MacOS, Linux, Windows, XBox, Android TV, and unofficially a few others that are in-progress (Apple Watch, ChromeOS). We should definitely put a list somewhere on the site.
Seems like Socket's mobile platform support is more mature than Tauri's to me. Are there other benefits to solo devs or small teams choosing Socket over Tauri beyond that and not having to write Rust to interact with the underlying system?
Re: A new cross-platform solution for Web developers
#16Do you guys have a tutorial on live p2p video/audio streaming? I wanna check it out!
Re: A new cross-platform solution for Web developers
#17Earlier quoted context omitted.
Seems like Socket's mobile platform support is more mature than Tauri's to me. Are there other benefits to solo devs or small teams choosing Socket over Tauri beyond that and not having to write Rust to interact with the underlying system?
Is Socket compatible with Qwik? Asking here coz Tauri does and has a tutorial on how to use Qwik on Tauri
Pretty much any code that runs on the Web will "just work" in Socket.
Re: A new cross-platform solution for Web developers
#18Since I've never heard anybody prefer React Native to just regular old React, React Native seems kinda pointless now.
Re: A new cross-platform solution for Web developers
#19Re: A new cross-platform solution for Web developers
#20Looks great! Since I've never heard anybody prefer React Native to just regular old React, React Native seems kinda pointless now.