1.0.0 • Published 6 years ago

childprocess-messageport v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
6 years ago

childprocess-messageport

npm version Build Status

Turns ChildProcess IPC into MessagePort.

Background

Instead of learning/using different API for different communication channels, we should unite them into a single interface pattern, either MessagePort or WebSocket.

How to use

const childProcess = ChildProcess.fork('echo.js');
const messagePort = new ChildProcessMessagePort(childProcess);

messagePort.onmessage = event => {
  // Could be either a string or Buffer
  console.log(event.data);
};

messagePort.postMessage('Hello, World!');

Instead of subscribing to onmessage, you can also subscribe using on('message', handler).

If the underlying childProcess.send is failed, an error event will be emitted.

Contributions

Like us? Star us.

Want to make it better? File us an issue.

Don't like something you see? Submit a pull request.