crackyourinterview.com


To improves our performance please Like Share Subscribe(Will boost us)

Child Process Fork
Question Posted on 01 Apr 2024Home >> Tutorial >> Node.js Tutorial >> Child Process Fork

Child Process Fork

Node.js child_process.fork() method


When we say about the child_process.fork() method, this method is a special case of the spawn() to create Node processes. This method returns object with a built-in communication channel in addition to having all the methods in a normal ChildProcess instance.

Below is the syntax of child process fork:-

child_process.fork(modulePath[, args][, options])

Parameters:-

(1)modulePath:-This is string specifies the module to run in the child.

(2)args:-This will specifies an array list of string arguments.

(3)options:-This may contain one or more of the following options:-
  • cwd:-Here we will specifies the current working directory of the child process.

  • env:-Here we will specifies the environment key-vakue pairs.

  • execPath:-This is a string executable used to create the child process.

  • execArgv:-It specifies Array List of string arguments passed to the executable (Default: process.execArgv).

  • silent:-It specifies Boolean If true, stdin, stdout, and stderr of the child will be piped to the parent, otherwise they will be inherited from the parent, see the "pipe" and "inherit" options for spawn()'s stdio for more details (default is false).

  • uid Number:-Here we will uses to sets the user identity of the process

  • gid Number:-Here we will use to sets the group identity of the process.



Node.js child_process.fork() method example


To understand this we will take two files to get full information about the fork() method.

File: support.js



Child Process Fork
Now we will open Node.js command prompt and run the below code:-

node master.js


Child Process Fork
0
0



.


Most Visited Questions:-

Deep Learning Questions Answers
Below are the different Deep Leaning Questions and answer a More...

Continuous Integration Questions Answers
Below are the 20 odd questions for CI or Continuous Integra More...

Derived relationships in Association Rule Mining are represented in the form of __________.
Derived relationships in Association Rule Mining are repres More...

What is Gulpjs and some multiple choice questions on Gulp
Gulpjs is an open source whihc helps in building Javascript More...

Microservices Architecture Questions Answers
Below are the different questions on Microservices Architec More...




Other Important Questions

Parts of Node.js

Install Node.js Linux

Node.js First Example

Node.js Globals

Node.js DNS






@2014-2022 Crackyourinterview (All rights reserved)
Privacy Policy - Disclaimer - Sitemap