Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Deno.kill

Send a signal to process under given pid.

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.

function kill(pid: number, signo: Signal): void;
§
kill(pid: number, signo: Signal): void
[src]

§Parameters

§
pid: number
[src]

§Return Type