bramblex / niva

一个基于 Tauri WRY 跨端 Webview 库的超轻量极易用的跨端应用开发框架。
https://bramblex.github.io/niva/
MIT License
644 stars 35 forks source link

跨平台命令行调用 #94

Open keyiis opened 1 year ago

keyiis commented 1 year ago

我想通过子进程获得当前系统nodejs的版本 Niva.api.process.exec("node -v").then((result) => { console.log(result) }).catch((error) => { console.log(error) }) 但是报错

1696667690750
chengxgm commented 10 months ago

Niva.api.process.exec("/usr/local/bin/node", ["-v"]) 需要指定精确的执行文件路径