A node module for smart subprocess handling with support for promises and streamlined subprocess communication.
Go to file
2017-03-03 20:58:05 +01:00
dist update smartipc internal code 2017-03-03 20:52:23 +01:00
test update smartipc internal code 2017-03-03 20:52:23 +01:00
ts update smartipc internal code 2017-03-03 20:52:23 +01:00
.gitignore initial 2016-09-28 13:01:36 +02:00
.gitlab-ci.yml ad gitlab.yml 2016-09-28 20:22:05 +02:00
npmextra.json add npmts as required global tool for CI 2017-03-03 20:58:05 +01:00
package.json 1.0.3 2017-03-03 20:52:25 +01:00
README.md update README 2017-03-03 20:55:54 +01:00
tslint.json initial 2016-09-28 13:01:36 +02:00
yarn.lock update smartipc internal code 2017-03-03 20:52:23 +01:00

smartipc

smart subprocess handling

Availabililty

npm git git docs

Status for master

build status coverage report npm downloads per month Dependency Status bitHound Dependencies bitHound Code TypeScript node JavaScript Style Guide

Usage

Use TypeScript for best in class instellisense.

Understand 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.

How To

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


For further information read the linked docs at the top of this README.

MIT licensed | © Lossless GmbH | By using this npm module you agree to our privacy policy

repo-footer