Skip to main content

Classes #

c
Deno.ChildProcess

The interface for handling a child process returned from Deno.Command.spawn.

c
Deno.Command

Create a child process.

Functions #

f
Deno.kill

Send a signal to process under given pid. The value and meaning of the signal to the process is operating system and process dependant. Signal provides the most common signals. Default signal is "SIGTERM".

    f
    Deno.spawn

    Spawns a new subprocess, returning a Deno.ChildProcess handle.

      f
      Deno.spawnAndWait

      Spawns a subprocess, waits for it to finish, and returns the output.

        f
        Deno.spawnAndWaitSync

        Synchronously spawns a subprocess, waits for it to finish, and returns the output.

          Interfaces #

          I
          Deno.CommandOutput

          The interface returned from calling Deno.Command.output or Deno.Command.outputSync which represents the result of spawning the child process.

          I
          Deno.CommandStatus
          No documentation available
          I
          Deno.SubprocessReadableStream

          The interface for stdout and stderr streams for child process returned from Deno.Command.spawn.

          Did you find what you needed?

          Privacy policy