Interface RawForkOptions

Options to fork a new process using the current Node interpreter (fork).

For more information please refer to the fork function of Node's child_process module:

https://nodejs.org/api/child_process.html#child_process_child_process_fork_modulepath_args_options

interface RawForkOptions {
    args?: string[];
    modulePath: string;
    options?: object;
}

Hierarchy (view full)

Properties

args?: string[]
modulePath: string
options?: object