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

x/dax/src/command.ts>CommandResult

Cross platform shell tools for Deno inspired by zx.
Very Popular
Go to Latest
class CommandResult
import { CommandResult } from "https://deno.land/x/dax@0.31.0/src/command.ts";

Result of running a command.

Constructors

new
CommandResult(
code: number,
stdout: BufferStdio,
stderr: BufferStdio,
combined: Buffer | undefined,
)

Properties

readonly
code: number

The exit code.

readonly
combined

Raw combined stdout and stderr text.

readonly
combinedBytes: Uint8Array

Raw combined stdout and stderr bytes.

readonly
stderr

Raw decoded stdout text.

readonly
stderrBytes: Uint8Array

Raw stderr bytes.

readonly
stderrJson

Stderr text as JSON.

readonly
stdout

Raw decoded stdout text.

readonly
stdoutBytes: Uint8Array

Raw stdout bytes.

readonly
stdoutJson

Stdout text as JSON.