![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
async-child-process
Advanced tools
A simple Promise
-based API for working with ChildProcess
es.
npm install --save async-child-process
join(child: ChildProcess): Promise<Result>
Waits for child
to exit.
Returns a Promise
that:
{code: 0}
if child
exits with code 0error.code
will be the exit code if the child exited normallyerror.signal
will be the signal the child was terminated with, if anychild
emits an error
, it may be the rejection reason and it may not have code
or signal
Example:
import {exec} from 'child_process'
import {join} from 'async-child-process'
async function test() {
await join(exec('echo hello world'))
}
kill(child: ChildProcess, signal?: string): Promise<void>
Sends a signal to child
and waits for it to exit.
Returns a Promise
that:
child
is killederror
if child
emits oneExample:
import {exec} from 'child_process'
import {kill} from 'async-child-process'
async function test() {
const child = exec(`node -e 'setTimeout(() => console.log("finally!"), 1e11)'`)
await kill(child)
}
childPrinted(child: ChildProcess, predicate: (output: string) => boolean | RegExp, stream?: 'stdout' | 'stderr'): Promise<string>
Waits for child
to print something to its stdout
and/or stderr
. Returns a promise that:
predicate
orchild
exited or errored before printing a message that matched predicate
Arguments:
ChildProcess
to listen tochildPrinted
will wait until child
's stream(s) output a message matching the predicatechild
's streams to listen to, omit to listen to both stdout
and stderr
Example:
import {exec} from 'child_process'
import {childPrinted} from 'async-child-process'
async function test() {
const child = exec(`webpack --config webpack.config.dev.js`)
await childPrinted(child, /webpack built in \d+ ms/)
}
execAsync(command: string, options?: Object): Promise<Result>
Like exec
, but returns a Promise
that:
{stdout: string, stderr: string}
from running command
if it exited with code 0error.code
will be the exit code if the child exited normallyerror.signal
will be the signal the child was terminated with, if anychild
emits an error
, it may be the rejection reason and it may not have code
or signal
Example:
import {execAsync} from 'async-child-process'
async function test() {
const {stdout} = await execAsync('docker-compose port webapp 80')
const testUrl = stdout.trim()
}
FAQs
Promise-based child process interface
We found that async-child-process demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.