fork method

ChildProcess fork(
  1. String modulePath, [
  2. List<String> args,
  3. ForkOptions options
])

This is a special case of spawn used specifically to spawn new Node.js processes.

Implementation

external ChildProcess fork(String modulePath,
    [List<String> args, ForkOptions options]);