IPC transport for node as a RxJS Subject.
yarn add @erebos/transport-ipcimport ipcTransport from '@erebos/transport-ipc'
const transport = ipcTransport('/path/to/socket')
transport.subcribe(console.log)
transport.next({ hello: 'transport' })Arguments
path: string
Returns Rx.Subject<Object>
MIT