cross-spawn-async

Cross platform child_process#spawn

MIT 21 个版本
安装
npm install cross-spawn-async
yarn add cross-spawn-async
pnpm add cross-spawn-async
bun add cross-spawn-async
README

cross-spawn-async

NPM version Downloads Build Status Build status Dependency status Dev Dependency status

A cross platform solution to node's spawn.

This module is deprecated, use cross-spawn instead which no longer requires a build toolchain.

Installation

$ npm install cross-spawn-async

Why

Node has issues when using spawn on Windows:

  • It ignores PATHEXT
  • It does not support shebangs
  • It does not allow you to run del or dir
  • It does not properly escape arguments with spaces or special characters

All these issues are handled correctly by cross-spawn-async. There are some known modules, such as win-spawn, that try to solve this but they are either broken or provide faulty escaping of shell arguments.

Usage

Exactly the same way as node's spawn, so it's a drop in replacement.

var spawn = require('cross-spawn-async');

var child = spawn('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' });

Tests

$ npm test

License

Released under the MIT License.

版本列表
2.2.5 2016-10-27
2.2.4 2016-05-18
2.2.3 2016-05-18
2.2.2 2016-04-13
2.2.1 2016-04-06
2.2.0 2016-04-06
2.1.9 2016-02-20
2.1.8 2016-01-27
2.1.7 2016-01-25
2.1.6 2016-01-02
2.1.5 2016-01-02
2.1.4 2016-01-02
2.1.3 2016-01-02
2.1.2 2016-01-02
2.1.1 2015-12-07
2.1.0 2015-12-07
2.0.1 2015-11-29
2.0.0 2015-07-21
1.0.1 2015-07-02
1.0.0 2015-07-02
0.1.0 2015-07-01