Options
All
  • Public
  • Public/Protected
  • All
Menu

Module "child_process"

Index

Functions

exec

  • exec(command: string, callback?: function): ChildProcess
  • exec(command: string, options: ExecOptions & { encoding: "buffer"; }, callback?: function): ChildProcess
  • exec(command: string, options: ExecOptions, callback?: function): ChildProcess

execFile

  • execFile(file: string, callback?: function): ChildProcess
  • execFile(file: string, options?: ExecFileOptions & { encoding: "buffer"; }, callback?: function): ChildProcess
  • execFile(file: string, options?: ExecFileOptions, callback?: function): ChildProcess
  • execFile(file: string, args?: string[], callback?: function): ChildProcess
  • execFile(file: string, args?: string[], options?: ExecFileOptions & { encoding: "buffer"; }, callback?: function): ChildProcess
  • execFile(file: string, args?: string[], options?: ExecFileOptions, callback?: function): ChildProcess

execFileSync

  • execFileSync(command: string): Buffer
  • execFileSync(command: string, options?: ExecFileSyncOptions & { encoding: "buffer"; }): Buffer
  • execFileSync(command: string, options?: ExecFileSyncOptions): Buffer
  • execFileSync(command: string, args?: string[], options?: ExecFileSyncOptions & { encoding: "buffer"; }): Buffer
  • execFileSync(command: string, args?: string[], options?: ExecFileSyncOptions): Buffer

execSync

  • execSync(command: string): Buffer
  • execSync(command: string, options?: ExecSyncOptions & { encoding: "buffer"; }): Buffer
  • execSync(command: string, options?: ExecSyncOptions): Buffer

fork

spawn

spawnSync

Generated using TypeDoc