摘要:
Child Process child_process 这个模块可以生成一个子进程。nodejs提供了好几个API,本质上都是调用child_process.spawn(): 1 const spawn = require('child_process').spawn; 2 const ls = s 阅读全文
摘要:
之前一直很不明白为什么 child_process.spawn(command[, args][, options]) shell <Boolean> | <String> If true, runs command inside of a shell. Uses '/bin/sh' on UNIX 阅读全文