Skip to main content
function Deno.kill
allow-run

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".

The term kill is adopted from the UNIX-like command line command kill which also signals processes.

If pid is negative, the signal will be sent to the process group identified by pid. An error will be thrown if a negative pid is used on Windows.

const p = Deno.run({
  cmd: ["sleep", "10000"]
});

Deno.kill(p.pid, "SIGINT");

Requires allow-run permission.

Parameters

pid: number
optional
signo: Signal