Skip to content

Latest commit

 

History

History
executable file
·
151 lines (102 loc) · 2.62 KB

process-promise.md

File metadata and controls

executable file
·
151 lines (102 loc) · 2.62 KB

ProcessPromise

The $ returns a ProcessPromise instance.

let p = $`command`

await p

stdin

Returns a writable stream of the stdin process. Accessing this getter will trigger execution of a subprocess with stdio('pipe').

Do not forget to end the stream.

let p = $`while read; do echo $REPLY; done`
p.stdin.write('Hello, World!\n')
p.stdin.end()

By default, each process is created with stdin in inherit mode.

stdout/stderr

Returns a readable streams of stdout/stderr process.

const p = $`npm init`
for await (const chunk of p.stdout) {
  echo(chunk)
}

exitCode

Returns a promise which resolves to the exit code of the process.

if (await $`[[ -d path ]]`.exitCode == 0) {
  ...
}

pipe()

Redirects the stdout of the process.

await $`echo "Hello, stdout!"`
  .pipe(fs.createWriteStream('/tmp/output.txt'))

await $`cat /tmp/output.txt`

Pipes can be used to show a real-time output of the process:

await $`echo 1; sleep 1; echo 2; sleep 1; echo 3;`
  .pipe(process.stdout)

The pipe() method can combine $ processes. Same as | in bash:

let greeting = await $`printf "hello"`
  .pipe($`awk '{printf $1", world!"}'`)
  .pipe($`tr '[a-z]' '[A-Z]'`)

echo(greeting)

Use combinations of pipe() and nothrow():

await $`find ./examples -type f -print0`
  .pipe($`xargs -0 grep ${'missing' + 'part'}`.nothrow())
  .pipe($`wc -l`)

kill()

Kills the process and all children.

By default, signal SIGTERM is sent. You can specify a signal via an argument.

let p = $`sleep 999`
setTimeout(() => p.kill('SIGINT'), 100)
await p

stdio()

Specifies a stdio for the process.

Default is .stdio('inherit', 'pipe', 'pipe').

let p = $`read`.stdio('pipe')

nothrow()

Changes behavior of $ to not throw an exception on non-zero exit codes.

await $`grep something from-file`.nothrow()

// Inside a pipe():

await $`find ./examples -type f -print0`
  .pipe($`xargs -0 grep something`.nothrow())
  .pipe($`wc -l`)

If only the exitCode is needed, you can use exitCode directly:

if (await $`[[ -d path ]]`.exitCode == 0) {
  ...
}

// Equivalent of:

if ((await $`[[ -d path ]]`.nothrow()).exitCode == 0) {
  ...
}

quiet()

Changes behavior of $ to disable verbose output.

// Command and output will not be displayed.
await $`grep something from-file`.quiet()

timeout()

Kills the process after a specified timeout.

await $`sleep 999`.timeout('5s')

// Or with a specific signal.
await $`sleep 999`.timeout('5s', 'SIGKILL')