Skip to content

Instantly share code, notes, and snippets.

@Salakar
Forked from ndelangen/process1.js
Created November 16, 2018 11:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Salakar/c8e5e878e1b98e85f8fff5b39ed03991 to your computer and use it in GitHub Desktop.
Save Salakar/c8e5e878e1b98e85f8fff5b39ed03991 to your computer and use it in GitHub Desktop.
If you have 2 independent NodeJS processes running and want them to communicate, this can be done reliably using a npm package: node-ipc
const ipc = require('node-ipc');
ipc.config.id = 'a-unique-process-name1';
ipc.config.retry = 1500;
ipc.config.silent = true;
ipc.serve(() => ipc.server.on('a-unique-message-name', message => {
console.log(message);
}));
ipc.server.start();
const ipc = require('node-ipc');
ipc.config.id = 'a-unique-process-name2';
ipc.config.retry = 1500;
ipc.config.silent = true;
ipc.connectTo('a-unique-process-name1', () => {
ipc.of['jest-observer'].on('connect', () => {
ipc.of['jest-observer'].emit('a-unique-message-name', "The message we send");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment