#
electron
Tauri 初体验:前途可期
之前一直苦恼于 electron
打包出来的体积太大,总是想要使其的体积更小,对于使用者更加友好。
最近发现了一个新的框架:Tauri,它是一个基于 Rust 的框架,可以将
Rust
代码编译成一个可执行文件,然后将这个可执行文件和前端代码打包成一个可执行文件。
本身我就对 Rust 比较感兴趣,所以就尝试了一下。
但是结果就是……Tauri的开发体验简直是糟糕。
简陋的开始
一开始使用一个简单的命令就可以创建一个基础的项目:
在选择了一些配置项之后,就可以运行这个项目了:
这个命令会启动一个开发服务器,然后打开一个窗口,显示你的应用。
一步步走到这里,一切都顺利,但是问题是:然后呢?
下面是它的文档的目录:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
| - 快速开始 - [什么是 Tauri?](https://v2.tauri.org.cn/start/) - [先决条件](https://v2.tauri.org.cn/start/prerequisites/) - [创建项目](https://v2.tauri.org.cn/start/create-project/) - 前端配置 - [概述](https://v2.tauri.org.cn/start/frontend/) - [Leptos](https://v2.tauri.org.cn/start/frontend/leptos/) - [Next.js](https://v2.tauri.org.cn/start/frontend/nextjs/) - [Nuxt](https://v2.tauri.org.cn/start/frontend/nuxt/) - [Qwik](https://v2.tauri.org.cn/start/frontend/qwik/) - [SvelteKit](https://v2.tauri.org.cn/start/frontend/sveltekit/) - [Trunk](https://v2.tauri.org.cn/start/frontend/trunk/) - [Vite](https://v2.tauri.org.cn/start/frontend/vite/) - 升级与迁移 - [概述](https://v2.tauri.org.cn/start/migrate/) - [从 Tauri 1.0 升级](https://v2.tauri.org.cn/start/migrate/from-tauri-1/) - [从 Tauri 2.0 Beta 升级](https://v2.tauri.org.cn/start/migrate/from-tauri-2-beta/)
|
在配置完前端(我使用的是vite)之后呢?让我们继续看看下面的非快速开始的内容:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
| - 核心概念 - [概述](https://v2.tauri.org.cn/concept/) - [Tauri 架构](https://v2.tauri.org.cn/concept/architecture/) - [进程模型](https://v2.tauri.org.cn/concept/process-model/) - [应用大小](https://v2.tauri.org.cn/concept/size/) - 进程间通信 - [概述](https://v2.tauri.org.cn/concept/inter-process-communication/) - [棕地模式](https://v2.tauri.org.cn/concept/inter-process-communication/brownfield/) - [隔离模式](https://v2.tauri.org.cn/concept/inter-process-communication/isolation/) - 安全性 - [概述](https://v2.tauri.org.cn/security/) - [权限](https://v2.tauri.org.cn/security/permissions/) - [命令作用域](https://v2.tauri.org.cn/security/scope/) - [功能](https://v2.tauri.org.cn/security/capabilities/) - [内容安全策略 (CSP)](https://v2.tauri.org.cn/security/csp/) - [HTTP 标头 新](https://v2.tauri.org.cn/security/http-headers/) - [Tauri 生态系统安全](https://v2.tauri.org.cn/security/ecosystem/) - [应用程序生命周期威胁](https://v2.tauri.org.cn/security/lifecycle/) - [未来工作](https://v2.tauri.org.cn/security/future/) - [运行时权限](https://v2.tauri.org.cn/security/runtime-authority/) - 开发 - [概述](https://v2.tauri.org.cn/develop/) - [从 Rust 调用前端](https://v2.tauri.org.cn/develop/calling-frontend/) - [从前端调用 Rust](https://v2.tauri.org.cn/develop/calling-rust/) - [配置文件](https://v2.tauri.org.cn/develop/configuration-files/) - [嵌入其他文件](https://v2.tauri.org.cn/develop/resources/) - [嵌入外部二进制文件](https://v2.tauri.org.cn/develop/sidecar/) - [状态管理](https://v2.tauri.org.cn/develop/state-management/) - [更新依赖项](https://v2.tauri.org.cn/develop/updating-dependencies/) - 调试 - [概述](https://v2.tauri.org.cn/develop/debug/) - [CrabNebula DevTools 新](https://v2.tauri.org.cn/develop/debug/crabnebula-devtools/) - [在 Neovim 中调试](https://v2.tauri.org.cn/develop/debug/neovim/) - [在 JetBrains IDE 中调试](https://v2.tauri.org.cn/develop/debug/rustrover/) - [在 VS Code 中调试](https://v2.tauri.org.cn/develop/debug/vscode/) - 插件 - [概述](https://v2.tauri.org.cn/develop/plugins/) - [移动插件开发](https://v2.tauri.org.cn/develop/plugins/develop-mobile/) - 测试 - [概述](https://v2.tauri.org.cn/develop/tests/) - [模拟 Tauri API](https://v2.tauri.org.cn/develop/tests/mocking/) - WebDriver - [概述](https://v2.tauri.org.cn/develop/tests/webdriver/) - [持续集成](https://v2.tauri.org.cn/develop/tests/webdriver/ci/) - 示例 - [设置](https://v2.tauri.org.cn/develop/tests/webdriver/example/) - [Selenium](https://v2.tauri.org.cn/develop/tests/webdriver/example/selenium/) - [WebdriverIO](https://v2.tauri.org.cn/develop/tests/webdriver/example/webdriverio/) - 分发 - [概述](https://v2.tauri.org.cn/distribute/) - ……后面略去
|
进程间通信这里,它在概述里面介绍了它使用的是类似于 IPC
的方式,但是问题是具体的调用方式在哪里呢?它没有举例子,而文档直到后面的
从 Rust
调用前端 才有介绍。
而且它也没讲解入口文件是哪个?主进程和渲染进程中主进程是在哪个文件中启动的?
模糊的文档
更为好笑的是:
1
| import {invoke} from '@tauri-apps/api/tauri'
|
这个示例用的代码无法运行,因为它找不到这个模块。为什么找不到呢?因为它安装tauri的时候并不默认包含它的api,而是需要手动安装:
1
| npm install @tauri-apps/api
|
欸,你认为这就结束了吗?不,它的文档也没有提到这个模块到底是哪里的,它在:
1
| import {invoke} from '@tauri-apps/api/core'
|
这个模块中。而不是教程中的 @tauri-apps/api/tauri
。
初次之外,类似的事情还在文件系统上,在文档中它说:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| # 文件系统
[GitHub](https://github.com/tauri-apps/plugins-workspace/tree/v2/plugins/fs) [npm](https://npmjs.net.cn/package/@tauri-apps/plugin-fs) [crates.io](https://crates.io/crates/tauri-plugin-fs)
API 参考[](https://v2.tauri.org.cn/reference/javascript/fs/)[](https://docs.rs/tauri-plugin-fs)
访问文件系统。
## [支持的平台](https://v2.tauri.org.cn/plugin/file-system/#_top#supported-platforms)
_此插件需要 Rust 版本至少为 **1.77.2**_
| 平台 | 级别 | 注意 | | --- | --- | --- | | windows | | 通过 MSI 或 NSIS 安装在 `perMachine` 和 `both` 模式下的应用,需要在 `$RESOURCES` 文件夹中进行写入访问时需要管理员权限| | linux | | 无法写入访问 `$RESOURCES` 文件夹| | macos | | 无法写入访问 `$RESOURCES` 文件夹| | android | | 默认情况下,访问权限仅限于应用程序文件夹 | | ios | | 默认情况下,访问权限仅限于应用程序文件夹|
|
但是在另外一处,它说:
1 2
| # 文件系统 fs模块可以使用 window.__TAURI__.fs 来访问文件系统。
|
但是实际上这种方式是无法使用的,因为它需要先安装
@tauri-apps/api/fs
,而不是
@tauri-apps/plugin-fs
。
欸,但是 2.0 版本的 fs 模块已经被默认移除了,需要使用 plugin-fs。
## 缺失的功能
我写的程序为了优化性能,使用了creatlink而非copy,但是在tauri中并没有这个功能,所以我需要自己写一个rust后端来实现这个功能并且还需要处理多平台的问题,要么就是仍然使用
nodejs 作为依赖。
但是这样的话,tauri的优势就没有了,因为我还是需要依赖 nodejs。
……
总结
只能说未来可期,但是现在的体验真的是太差了,文档不全,不清晰,而且还有很多坑,不建议使用。
不过rust的编程的思路很有意思,虽然说编程的时候碍手碍脚的,但是因为其稳定性和性能,还是值得一试的。
Reference