如何使用nodejs接受输入命令行

时间:2018-09-10 17:28:05

标签: node.js command-line electron child-process exp

enter image description here

我想接受来自控制台/终端的输入。到目前为止,这是我的解决方案:

const expBuild = spawn("exp", ["build:ios"], { cwd: 'app' }); 

expBuild.stdout.on("data", data => { 
   console.log(`stdout: ${data.toString()}`); 
}); 

expBuild.stderr.on("data", data => { 
   console.log(`stderr: ${data.toString()}`); 
});

这就是我在控制台中看到的:

enter image description here

0 个答案:

没有答案