Module

Dotenv.Internal.ChildProcess

This module encapsulates the logic for running a child process.

#CHILD_PROCESS

type CHILD_PROCESS r = (childProcess :: ChildProcessF | r)

The effect type used for a child process

#ChildProcessF

data ChildProcessF a

A data type representing the supported operations

Constructors

Instances

#_childProcess

_childProcess :: SProxy "childProcess"

The effect label used for a child process

#handleChildProcess

handleChildProcess :: ChildProcessF ~> Aff

The default interpreter for handling a child process

#spawn

spawn :: forall r. String -> Array String -> Run (CHILD_PROCESS r) String

Constructs the value used to spawn a child process.

Modules