Node.js

Node Js Child Process Module

Node works efficiently with I/O because of asynchronous event driven programming model,but in case of CPU-intensive tasks it will block the event loop, thus limiting the application responsiveness. CPU-intensive tasks should be performed by different process, to keep event loop free. So, Node allow us to spawn a new process and...

by Vikas Bansal
Tag: child process nodejs
02-May-2016