Socket
Socket
Sign inDemoInstall

spawn-shell

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

spawn-shell

Run shell commands using child_process#spawn.


Version published
Weekly downloads
40K
decreased by-6.57%
Maintainers
1
Weekly downloads
 
Created
Source

spawn-shell

Run shell commands using child_process#spawn.

Travis Build Status NPM module NPM downloads

Features

  • Multi-platform - run on OSX, Linux, Windows
  • Return a promise that resolve with exitcode when spawned process terminetes
  • Use child_process#spawn for greater flexibility than child_process#exec
  • Use user system shell by default, or customize it via shell option.
  • Inject your package node_modules/.bin directory in path.
  • stdio spawn option defaults to inherit, sharing parent process stdin & stdout

Installation

npm install --save spawn-shell

Usage

  const spawnShell = require('spawn-shell');

  // simple to use with promise
  const exitCode = await spawnShell('echo "it works" && exit 42').exitPromise;
  // output `it works` to stdout
  // exitCode === 42


  // access ChildProcess instance before promise is resolved
  const p = spawnShell('echo "it works"', {
    stdio: [0, 'pipe', 2]
  });

  p.stdout.pipe(concat(
    {encoding: 'string'},
    output => {
      // output === 'it works'
    }
  ));

License

The MIT License (MIT)

Copyright (c) 2016 parro-it

Keywords

FAQs

Package last updated on 08 Feb 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc