#tauri-plugin #terminal #pty #tauri-app #applications #command-line-interface #write

tauri-plugin-pty

为 Tauri 提供伪终端 (PTY) 插件

6 个版本

0.0.8 2023年12月24日
0.0.6 2023年12月24日

#12#pty

MIT 许可协议

28KB
595

Tauri 伪终端插件

开发中!欢迎贡献力量!

示例

完整示例在: https://github.com/Tnze/tauri-plugin-pty/tree/main/examples/vanilla

# Install this plugin in your Cargo.toml
cargo add tauri-plugin-pty
# Install the api package
npm install tauri-pty
tauri::Builder::default()
    .plugin(tauri_plugin_pty::init()) // add this
    .run(tauri::generate_context!())
    .expect("error while running tauri application");
...
import { Terminal } from "xterm"
import { spawn } from "tauri-pty";

// init xterm.js
const term = new Terminal();
term.open(/* DOM Elem */);
// spawn shell
const pty = spawn("powershell.exe", [/* args */], {
    cols: term.cols,
    rows: term.rows,
})
// transport data
pty.onData(data => term.write(data))
term.onData(data => pty.write(data))

依赖项

~23–65MB
~1M SLoC