nodejs可以打开任意非系统服务的exe吗

nodejs可以打开任意非系统服务的exe吗


POPMUISE
浏览 539回答 1
1回答

MMTTMM

可以。用 Node.js 自带的 child_process 模块就行,或者用 execa 之类的库也行。1234567var exec = require('child_process').execFile;var fun =function(){   console.log("fun() start");   exec('HelloJithin.exe', function(err, data) {          console.log(err)        console.log(data.toString());                           });  }fun(); 
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Node.js