Package

io.scalajs.nodejs

child_process

Permalink

package child_process

Visibility
  1. Public
  2. All

Type Members

  1. trait ChildProcess extends Object

    Permalink

    The child_process module provides the ability to spawn child processes in a manner that is similar, but not identical, to popen(3).

    The child_process module provides the ability to spawn child processes in a manner that is similar, but not identical, to popen(3). This capability is primarily provided by the child_process.spawn() function.

    Annotations
    @RawJSType() @native()
    See also

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

  2. class ExecOptions extends Object

    Permalink

    Spawns a shell then executes the command within that shell, buffering any generated output.

    Spawns a shell then executes the command within that shell, buffering any generated output.

    Note: Never pass unsanitized user input to this function. Any input containing shell meta-characters may be used to trigger arbitrary command execution.

    Annotations
    @RawJSType() @ScalaJSDefined()
  3. class ForkOptions extends Object

    Permalink

    Fork Options

    Fork Options

    Annotations
    @RawJSType() @ScalaJSDefined()
  4. class SpawnOptions extends Object

    Permalink

    Spawn Options

    Spawn Options

    Annotations
    @RawJSType() @ScalaJSDefined()

Value Members

  1. object ChildProcess extends Object with ChildProcess

    Permalink

    ChildProcess Singleton

    ChildProcess Singleton

    Annotations
    @native() @JSImport( "child_process" , JSImport.Namespace )

Ungrouped