TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Tauri 2.0 Release Candidate

209 pointsby martpie10 months ago

12 comments

wubrr10 months ago
Took a look at the homepage (<a href="https:&#x2F;&#x2F;v2.tauri.app&#x2F;" rel="nofollow">https:&#x2F;&#x2F;v2.tauri.app&#x2F;</a>)... and basically have no idea what this is or why I would use it.<p>Consider adding something more informative than &#x27;Hardened foundation for your web apps&#x27;, and maybe an &#x27;About&#x27; page.
评论 #41142611 未加载
评论 #41145167 未加载
评论 #41142866 未加载
评论 #41152813 未加载
logankeenan10 months ago
I’ve been using Tauri for an app I’m developing. The Tauri team is super helpful in their Discord channel. Writing everything in Rust, including the UI (using Axum) has been nice. I’m really excited for 2.0 and mobile support!<p>My app (very beta) <a href="https:&#x2F;&#x2F;meshly.cloud" rel="nofollow">https:&#x2F;&#x2F;meshly.cloud</a>
评论 #41144140 未加载
评论 #41144104 未加载
评论 #41144189 未加载
Sytten10 months ago
We just finished migrating away from Tauri to Electron for our desktop application after running Tauri for 2 years. We are a rust shop so it makes sense to use Tauri, but I can&#x27;t recommend it for a startup use until they allow packaging a webview into your build. The amount of time you currently have to spend in debugging each OS&#x2F;Version combination of bugs is simply untenable. This is scheduled for v3 last time I talked to the devs.<p>Otherwise good progress, happy to see it!
评论 #41143289 未加载
评论 #41144501 未加载
评论 #41143768 未加载
评论 #41143297 未加载
评论 #41143514 未加载
lostindetails10 months ago
I upgraded the app I am currently working on from tauri 1.7 to 2.0 by following the guide from here: <a href="https:&#x2F;&#x2F;v2.tauri.app&#x2F;start&#x2F;migrate&#x2F;from-tauri-1&#x2F;" rel="nofollow">https:&#x2F;&#x2F;v2.tauri.app&#x2F;start&#x2F;migrate&#x2F;from-tauri-1&#x2F;</a><p>After running the migrate tool (via `bun run tauri migrate`) at the end of the guide, I needed to do the following things to get complete it migration.<p>- the migrate tool ran rust format on my backend code - which I was not using at that point - and it changed my preferred to 2 spaces to 4, so I joined the rustfmt bandwagon and created a config file with my preferred settings<p>- run `cargo update` to get the new package versions<p>- modify `tauri.conf.json` as the structure changed, eg. `fileDropEnabled` -&gt; `dragDropEnabled`<p>- change some imports, as the functions from client api were moved, this was straightforward<p>- add the plugins `updater` and `dialog` as that functionality has moved from the core to plugins<p>- change the code that handles the auto-updating, as the api changed as well, but for the better<p>- the only thing that tripped me up, was that re-building the project didnt&#x27;t work due to an colliding filename error, but I found a closed issue at their <a href="https:&#x2F;&#x2F;github.com&#x2F;tauri-apps&#x2F;tauri&#x2F;issues&#x2F;10192">https:&#x2F;&#x2F;github.com&#x2F;tauri-apps&#x2F;tauri&#x2F;issues&#x2F;10192</a> which pointed me towards removing `rlib` from the crate-type, which solved that issue.<p>All in all quite a smooth experience, was done in an 1-2 hours or something, not sure.
kayson10 months ago
I&#x27;ve been following tauri for a bit. It seems very cool and interesting but I&#x27;ve always wondered - what are the use cases for putting your app in a webview instead of using the browser? Everything I&#x27;ve thought of would work just as well.
评论 #41142177 未加载
评论 #41142355 未加载
评论 #41142613 未加载
评论 #41142644 未加载
评论 #41142180 未加载
评论 #41142371 未加载
评论 #41142341 未加载
评论 #41142961 未加载
评论 #41142354 未加载
评论 #41143007 未加载
评论 #41142167 未加载
评论 #41142292 未加载
评论 #41142195 未加载
评论 #41142185 未加载
drummerboy254310 months ago
I am curious, I work for a company that has a bunch of hardware(serial communication) that communicates to our modules is built via python. So all the backend tooling is python that has the drivers and quality of life functions to support that hardware. Would love to make a native experience instead of a webapp (flask etc)<p>Does anyone have a solution to this? Would love to use Tauri as a desktop server and create the WebView. But do I just use ffi for every single class&#x2F;module&#x2F;function?<p>Or does anyone know a more elegant solution to bridge the gap of making a native desktop experience while still leveraging the years of python drivers that have been built up
sva_10 months ago
Oh they finally support mobile as well (at least beta.) Might be worth checking out again.
cageface10 months ago
I use Tauri for my sync app that syncs music between my mobile app and desktop library. It&#x27;s been a pleasure to use. Tauri 2.0 looks like it&#x27;s going to be a real contender for mobile too.
Fire-Dragon-DoL10 months ago
One big difference between tauri and electron is that tauri can deliver to mobile, from my understanding.<p>Is there an hybrid way to deliver with tauri on macos and windows, but electron in linux?
评论 #41144097 未加载
评论 #41143848 未加载
Fire-Dragon-DoL10 months ago
Is there any hope that Tauri could use something else as browser on linux? Something based off firefox or chromium would be ideal... That would solve all the problems I have with it
评论 #41153951 未加载
srid10 months ago
Related: Dioxus<p>&gt; <i>Dioxus is a Rust library for building apps that run on desktop, web, mobile, and more.</i><p><a href="https:&#x2F;&#x2F;dioxuslabs.com">https:&#x2F;&#x2F;dioxuslabs.com</a><p>(Dioxus uses Tauri)
jerrygoyal10 months ago
can I convert a pwa to Tauri? how much effort is needed?
评论 #41149030 未加载