Skip to content

Latest commit

 

History

History
203 lines (137 loc) · 3.79 KB

process-promise.md

File metadata and controls

203 lines (137 loc) · 3.79 KB

Process Promise

The $ returns a ProcessPromise instance. When resolved, it becomes a ProcessOutput.

const p = $`command` // ProcessPromise

const o = await p    // ProcessOutput

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.

const 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) {
...
}

json(), text(), lines(), buffer(), blob()

Output formatters collection.

const p = $`echo 'foo\nbar'`

await p.text()        // foo\n\bar\n
await p.text('hex')   //  666f6f0a0861720a
await p.buffer()      //  Buffer.from('foo\n\bar\n')
await p.lines()       // ['foo', 'bar']
await $`echo '{"foo": "bar"}'`.json() // {foo: 'bar'}

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:

const 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.

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

abort()

Terminates the process via an AbortController signal.

const ac = new AbortController()
const {signal} = ac
const p = $({signal})`sleep 999`

setTimeout(() => ac.abort('reason'), 100)
await p

If ac or signal is not provided, it will be autocreated and could be used to control external processes.

const p = $`sleep 999`
const {signal} = p

const res = fetch('https://example.com', {signal})
p.abort('reason')

stdio()

Specifies a stdio for the process.

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

const 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 enable suppress mode.

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

$.quiet = true
await $`echo foo`.quiet(false) // Disable for the specific command

verbose()

Enables verbose output. Pass false to disable.

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

$.verbose = true
await $`echo foo`.verbose(false) // Turn off verbose mode once

timeout()

Kills the process after a specified timeout.

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

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