Skip to main content
Module

x/uuid/lib/lib.deno_runtime.d.ts>Deno.run

Deprecated! UUID is part of the deno standard library
Latest
function Deno.run
import { Deno } from "https://deno.land/x/uuid@v0.1.2/lib/lib.deno_runtime.d.ts";
const { run } = Deno;

Spawns new subprocess.

Subprocess uses same working directory as parent process unless opt.cwd is specified.

Environmental variables for subprocess can be specified using opt.env mapping.

By default subprocess inherits stdio of parent process. To change that opt.stdout, opt.stderr and opt.stdin can be specified independently.