@expo/spawn-async
A Promise-based interface into processes created by child_process.spawn
Last updated 6 years ago by ide .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ npm install @expo/spawn-async 
SYNC missed versions from official npm registry.

spawn-async CircleCI Build Status

A cross-platform version of Node's child_process.spawn as an async function that returns a promise.

Usage:

import spawnAsync from '@expo/spawn-async';

(async function () {
    let resultPromise = spawnAsync('echo', ['hello', 'world']);
    let spawnedChildProcess = resultPromise.child;
    try {
      let {
        pid,
        output: [stdout, stderr],
        stdout,
        stderr,
        status,
        signal,
      } = await resultPromise;
    } catch (e) {
       console.error(e.stack);
      // The error object also has the same properties as the result object
    }
})();

API

spawnAsync takes the same arguments as child_process.spawn.

It returns a promise whose result is an object with these properties:

  • pid: the process ID of the spawned child process
  • output: an array with stdout and stderr's output
  • stdout: a string of what the child process wrote to stdout
  • stderr: a string of what the child process wrote to stderr
  • status: the exit code of the child process
  • signal: the signal (ex: SIGTERM) used to stop the child process if it did not exit on its own

If there's an error running the child process or it exits with a non-zero status code, spawnAsync rejects the returned promise. The Error object also has the properties listed above.

Accessing the child process

Sometimes you may want to access the child process object--for example, if you wanted to attach event handlers to stdio or stderr and process data as it is available instead of waiting for the process to be resolved.

You can do this by accessing .child on the Promise that is returned by spawnAsync.

Here is an example:

(async () => {
    let ffmpeg$ = spawnAsync('ffmpeg', ['-i', 'path/to/source.flac', '-codec:a', 'libmp3lame', '-b:a', '320k', '-ar', '44100', 'path/to/output.mp3']);
    let childProcess = ffmpeg$.child;
    childProcess.stdout.on('data', (data) => {
      console.log(`ffmpeg stdout: ${data}`);
    });
    childProcess.stderr.on('data', (data) => {
      console.error(`ffmpeg stderr: ${data}`);
    });
    let result = await ffmpeg$;
    console.log(`ffmpeg pid ${result.pid} exited with code ${result.code}`);
})();

Current Tags

  • 1.7.2                                ...           latest (2 years ago)
  • 1.4.0                                ...           next (6 years ago)

10 Versions

  • 1.7.2                                ...           2 years ago
  • 1.7.1                                ...           2 years ago
  • 1.7.0                                ...           2 years ago
  • 1.7.0-rc.0                                ...           2 years ago
  • 1.6.0                                ...           3 years ago
  • 1.5.0                                ...           6 years ago
  • 1.4.2                                ...           6 years ago
  • 1.4.0                                ...           6 years ago
  • 1.3.0                                ...           7 years ago
  • 1.2.8                                ...           8 years ago
Downloads
Total 12
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (4)

© 2010 - cnpmjs.org x YWFE | Home | YWFE