🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

child-process-ext

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

child-process-ext

Extensions to Node.js child_process module

latest
Source
npmnpm
Version
3.0.2
Version published
Maintainers
1
Created
Source

Build status Tests coverage npm version

child-process-ext

Node.js child_process extensions

Installation

npm install child-process-ext

API

spawn(command[, args[, options]])

Cross system compliant spawn (backed by cross-spawn).

Works exactly same way as node's spawn with difference that promise is returned that resolves once process exits.

Following properties are exposed on return promise:

  • child - child process
  • stdout - stdout stream (decorated so it can also be used as promise)
  • stderr - stderr stream (decorated so it can also be used as promise)
  • std - Merged stdout & stderr stream (decorated so it can also be used as promise)
  • stdoutBuffer - Buffer that exposes so far written stdout
  • stderrBuffer - Buffer that exposes so far written stderrr
  • stdBuffer - Buffer that exposes so far written std

Promise resolves with object with three properties:

  • code - Exit code of a child proces
  • signal - Signal that terminated the process
  • stdoutBuffer - Buffer containing gathered stdout content
  • stderrBuffer - Buffer containing gathered stderr content
  • stdBuffer - Buffer containing gathered stderr content

If process exits with non zero code, then promise is rejected with an error exposing same properties as above

Non standard options
split bool (default: false)

Whether stdout data should be split by lines. If set to true, then stdout and stderr on promise expose mappers of original stdout and stderr that emit each line with distinct data event

shouldCloseStdin bool (default: false)

Whether stdin should be closed. Applicable for spawned processes where stdin is set to other than 'inherit' mode, and underlying processes is reading from stdin. Not providing any stdin output, may produce stall if process logic waits for an input. See: get-stdin#13 for more information

Tests

npm test

Keywords

child_process

FAQs

Package last updated on 22 Aug 2023

Did you know?

Socket

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.

Install

Related posts