多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
脚本可以通过 child_process 模块新建子进程,从而执行 Unix 系统命令。 ~~~ #!/usr/bin/env node var name = process.argv[2]; var exec = require('child_process').exec; var child = exec('echo hello ' + name, function(err, stdout, stderr) { if (err) throw err; console.log(stdout); }); ~~~ 用法如下。 ~~~ $ ./hello tom hello tom ~~~