Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/proc/src/proc-readable-stream.ts>execute

A high-level way to run child processes that is easy, flexible, powerful, and prevents resource leaks.
Very Popular
Go to Latest
function execute
import { execute } from "https://deno.land/x/proc@0.20.1/src/proc-readable-stream.ts";

Run a process.

Parameters

options: RunFnOptions

The command.

cmd: string

Options.

...args: string[]

Returns

Promise<void>

A child process instance.

Run a process.

Parameters

cmd: string

The command.

...args: string[]

Returns

Promise<void>

A child process instance.