21次发布
新 2.0.0-rc.2 | 2024年8月20日 |
---|---|
2.0.0-beta.10 | 2024年7月31日 |
2.0.0-beta.3 | 2024年3月21日 |
2.0.0-alpha.6 | 2023年12月20日 |
2.0.0-alpha.0 | 2023年5月24日 |
#118 in GUI
32,528 每月下载量
在 4 crates 中使用
90KB
1.5K SLoC
访问系统shell。允许您通过默认应用程序启动子进程和管理文件和URL。
安装
此插件需要至少Rust版本 1.75
我们可以推荐三种一般的安装方法。
- 使用crates.io和npm(最简单,需要您信任我们的发布管道已正常工作)
- 直接从Github使用git标签/修订哈希拉取源代码(最安全)
- 使用Git子模块在您的tauri项目中安装此仓库,然后使用文件协议来导入源代码(最安全,但使用不便)
通过将以下内容添加到您的 Cargo.toml
文件来安装核心插件
src-tauri/Cargo.toml
[dependencies]
tauri-plugin-shell = "2.0.0-rc"
# alternatively with Git:
tauri-plugin-shell = { git = "https://github.com/tauri-apps/plugins-workspace", branch = "v2" }
您可以使用您首选的JavaScript包管理器安装JavaScript客户端绑定
注意:由于大多数JavaScript包管理器无法从git monorepos安装包,我们为每个插件提供了只读镜像。这使得安装选项2更易于使用。
pnpm add @tauri-apps/plugin-shell
# or
npm add @tauri-apps/plugin-shell
# or
yarn add @tauri-apps/plugin-shell
# alternatively with Git:
pnpm add https://github.com/tauri-apps/tauri-plugin-shell#v2
# or
npm add https://github.com/tauri-apps/tauri-plugin-shell#v2
# or
yarn add https://github.com/tauri-apps/tauri-plugin-shell#v2
用法
首先,您需要将核心插件与Tauri注册
src-tauri/src/main.rs
fn main() {
tauri::Builder::default()
.plugin(tauri_plugin_shell::init())
.run(tauri::generate_context!())
.expect("error while running tauri application");
}
之后,所有插件API都可通过JavaScript客户端绑定访问
import { Command } from "@tauri-apps/plugin-shell";
Command.create("git", ["commit", "-m", "the commit message"]);
贡献
接受PR。在提交拉取请求之前,请确保阅读贡献指南。
合作伙伴
有关赞助商的完整列表,请访问我们的 网站 和 Open Collective。
许可证
代码: (c) 2015 - 现在 - The Commons Conservancy的Tauri项目。
适用于适用情况下的MIT或MIT/Apache 2.0。
依赖项
~20–63MB
~1M SLoC