1.0.2 • Published 8 years ago

ipc-goddess v1.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
8 years ago

ipc-goddess

This provides the IPC socket that all goddess apps on the same machine use to communicate with one another. For communications over the network, see comm-goddess.

Usage:

var ipc = require('ipc-goddess');

var config = {
  id: 'light-goddess',
  inputs: {
    'preset': 'comm-goddess'
  },
  outputs: [
    'channels'
  ]
};

ipc.initSocket(config);
ipc.emit('channels','Channel data');
ipc.on('preset', (data) => { console.log(data) });
1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago