2017-01-29 23:46:09 +01:00
2017-01-29 23:41:26 +01:00
2017-01-29 23:41:26 +01:00
2017-01-29 23:41:26 +01:00
2016-09-28 13:01:36 +02:00
2016-09-28 20:22:05 +02:00
2017-01-29 20:50:39 +01:00
2017-01-29 23:46:09 +01:00
2016-09-28 13:01:36 +02:00

smartipc

smart subprocess handling

Availabililty

npm git git docs

Status for master

build status coverage report Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

The purpose

smartipc makes it easy to spawn tasks into subprocesses without loosing control over what those processes do. You can transparently call functions and expect returned data using promises.

Usage

Master.ts:

import * as smartipc from 'smartipc'
smartipc.setBasePathArg(__dirname) // if you want to avoid typings out full paths every time

let myThread = new smartipc.Thread('worker')
myThread.send('someMessageOrObject').then(messageResponse => {
    console.log(messageResponse)
})

worker.ts


npm

Description
A node module for smart subprocess handling with support for promises and streamlined subprocess communication.
Readme 371 KiB
Languages
TypeScript 97.5%
JavaScript 2.5%