Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 455 Bytes

Node.ChildProcess.md

File metadata and controls

37 lines (26 loc) · 455 Bytes

Node.ChildProcess

Child Process

type Output

type Output   
    = Silent   
    | Verbose 

Output type.


type Exit

type Exit   
    = Code Int  
    | Signal String

Exit type.


spawn

spawn : String -> Node.ChildProcess.Output -> Task Node.Error.Error Node.ChildProcess.Exit

Spawn a child process by running the given command.