Socket
Socket
Sign inDemoInstall

slave

Package Overview
Dependencies
3
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    slave

seamlessly create long-running child processes


Version published
Weekly downloads
1.4K
decreased by-24.14%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

slave

NPM version Build status Test coverage Dependency Status License Downloads Gittip

Slave is a tiny utility to allow you to create long-running slave processes for your node process and use these functions as promises. Create modules that run in separate processes without anyone even knowing!

Walkthrough

Wrap your function in a slave. The function must either:

  • Be a co-based generator function
  • A function that returns a promise
  • A synchronous function

Now, create a separate my-module/slave.js file:

var slave = require('slave/slave');
var fn = require('./index.js'); // my main module
slave(fn); // it's wrapped!

Now you can create a my-module/master.js file, which runs slave.js:

var master = require('slave/master');
module.exports = master(require.resolve('./slave.js'))

Now users have two ways to use this module. Directly:

var fn = require('my-module');

fn(1, 2).then(function (val) {

});

Using child processes:

var fn = require('my-module/master');

fn(1, 2).then(function (val) {

});

API

var fn = slave.master(slavepath, [options])

Create a function from a slavepath, which exports a slave.slave() function.

Options are:

  • forks=0 - number of child processes to initiate immediately

fn will always return a promise, even if the wrapped function is synchronous.

fn.fork()

Create a new child process.

slave.slave(fn)

Hooks a function into process to allow the parent process to listen.

Keywords

FAQs

Last updated on 22 Dec 2014

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc