node之子线程child_process模块

Posted leaf930814

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node之子线程child_process模块相关的知识,希望对你有一定的参考价值。

  node.js是基于单线程模型架构,这样的设计可以带来高效的CPU利用率,但是无法却利用多个核心的CPU,为了解决这个问题,node.js提供了child_process模块,用于新建子进程,子进程的运行结果储存在系统缓存之中(最大200KB),等到子进程运行结束以后,主进程再用回调函数读取子进程的运行结果。由此来实现对多核CPU的利用,且可以实现简单又使实用的非阻塞操作。

1、 exec()

exec()方法用于执行bash命令,它的参数是一个命令字符串。

const exec = require(‘child_process‘).exec;

var ls = exec(‘ls -l‘, (error, stdout, stderr)=> {
  if (error) {
    console.log(error.stack);
    console.log(‘Error code: ‘ + error.code);
  }
  console.log(‘Child Process STDOUT: ‘ + stdout);
});

 

上面代码的exec方法用于新建一个子进程,然后缓存它的运行结果,运行结束后调用回调函数。

exec方法最多可以接受两个参数,
第一个参数是所要执行的shell命令,
第二个参数是回调函数,该函数接受三个参数,分别是发生的错误、标准输出的显示结果、标准错误的显示结果

 

2、execFile()

execFile方法直接执行特定的程序,参数作为数组传入,不会被bash解释,因此具有较高的安全性。

const child_process = require(‘child_process‘);

var path = ".";
child_process.execFile(‘/bin/ls‘, [‘-l‘, path], function (err, result) {
    console.log(result)
});

  

3、spawn()

spawn方法创建一个子进程来执行特定命令,用法与execFile方法类似,但是没有回调函数,只能通过监听事件,来获取运行结果。它属于异步执行,适用于子进程长时间运行的情况。

const child_process = require(‘child_process‘);
var child = child_process.spawn( command );
child.stdout.on(‘data‘, (data) =>{
	console.log(data);
});

 

4、fork()

5、官网地址

 

以上是关于node之子线程child_process模块的主要内容,如果未能解决你的问题,请参考以下文章

Node.js进程通信模块child_process

node child_process模块

Node 核心模块之 child_process

Webpack 和 TypeScript:无法解析 node.d.ts 中的模块“child_process”

node.js 安全/转义中的 child_process 生成

node高并发