我正在尝试使用Atom电子为Mac和Windows编写桌面应用程序。
我需要的是:
一个按钮。
当用户单击该按钮时,它将运行以下shell(或python脚本):
ping x.x.x.x
结果将显示在TextArea中。
我尝试使用[shelljs]和[yargs],但似乎它对Atom电子不起作用。
我想要的只是使用JAVASCRIPT来编写桌面应用程序(当然还有GUI),它调用一些脚本(shell&& python)来做一些自动化工作。
任何建议都将不胜感激,谢谢:)
答案 0 :(得分:28)
可以直接使用Node完成,您可以使用child_process
模块。请注意这是异步的。
const exec = require('child_process').exec;
function execute(command, callback) {
exec(command, (error, stdout, stderr) => {
callback(stdout);
});
};
// call the function
execute('ping -c 4 0.0.0.0', (output) => {
console.log(output);
});
我鼓励你们看一下npm,有很多模块可以帮助你做你想做的事情而不需要调用python脚本。
答案 1 :(得分:4)
尝试 node-powershell npm。您可以直接执行shell脚本命令并显示结果。
var shell = require('node-powershell')
var ps = new shell()
ps.addCommand('ping -c 4 0.0.0.0')
ps.invoke()
.then(function (output) {
console.log(output)
})
.catch(function (err) {
console.log(err)
ps.dispose()
})
答案 2 :(得分:1)
您可以使用child_process通过使用以下代码来存档您要执行的操作
var exec = require('child_process').exec
function Callback(err, stdout, stderr) {
if (err) {
console.log(`exec error: ${err}`);
return;
}else{
console.log(`${stdout}`);
}
}
res = exec('ping xxx.xxx.xxx', Callback);