Coder Social home page Coder Social logo

abdulxaqdev / spawning-node-child-process Goto Github PK

View Code? Open in Web Editor NEW
0.0 1.0 0.0 4 KB

example of nodejs child_process spawning child process spawning with IPS and standard io (stdio)

Home Page: https://nodejs.org/api/child_process.html#optionsstdio

JavaScript 100.00%
childprocess nodejs spawning

spawning-node-child-process's Introduction

Example of node child_process spawning with:

  • Stdio (Standard input, output and error)

main.js

const { spawn } = require("child_process");

const childProcess = spawn("node", [`${__dirname}/child.js`], { stdio: ["pipe", "pipe", "pipe"] });

childProcess.stdout.on("data", (message) => {
  console.log(message.toString());
});

childProcess.stdin.write("main-message-stdio");

child.js

process.stdin.on("data", (message) => {
  console.log(message.toString());
  process.exit(0)
});

process.stdout.write("child-message-stdio");

  • IPC (Inter Process Communication)

main.js

const { spawn } = require("child_process");

const childProcess = spawn("node", [`${__dirname}/child.js`], { stdio: ["inherit","inherit","inherit", "ipc"] });

childProcess.on("message", (message) => {
  console.log("[Main] received:", message);
});

childProcess.send("main-message-ipc");

child.js

process.on("message", (message) => {
  console.log("[Child] received:", message);
  process.exit(0)
});

process.send("child-message-ipc");

spawning-node-child-process's People

Contributors

abdulxaqdev avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.