pm2-intercom-appname

Simple inter process communication for processes managed by PM2

Usage no npm install needed!

<script type="module">
  import pm2IntercomAppname from 'https://cdn.skypack.dev/pm2-intercom-appname';
</script>

README

This package is fork from pm2-intercom, but only handle ipc for the process with the same app name

Simple IPC for PM2

Simple inter process communication for processes managed by PM2. Require PM2 > 16.0.0.

$ pm2 install pm2-intercom-appname

Emit a message

To emit a message just use the builtin process.send function of Node.js. pm2-intercom will then receive the message and will broadcast it to all processes.

process.send({
  topic : 'cmd:topic',
  data  : {
    some : 'data'
  }
});

Receive message

process.on('message', function(packet) {
  if (packet.topic == 'cmd:topic') {
    console.log('Received packet', packet.data);
  }
});

License

MIT