cross-spawn-async

Cross platform child_process#spawn

cross-spawn no longer requires a build toolchain, use it instead
Last updated 9 years ago by satazor .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install cross-spawn-async 
SYNC missed versions from official npm registry.

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.

Current Tags

  • 2.2.5                                ...           latest (9 years ago)

21 Versions

  • 2.2.5 [deprecated]           ...           9 years ago
  • 2.2.4 [deprecated]           ...           10 years ago
  • 2.2.3 [deprecated]           ...           10 years ago
  • 2.2.2 [deprecated]           ...           10 years ago
  • 2.2.1 [deprecated]           ...           10 years ago
  • 2.2.0 [deprecated]           ...           10 years ago
  • 2.1.9 [deprecated]           ...           10 years ago
  • 2.1.8 [deprecated]           ...           10 years ago
  • 2.1.7 [deprecated]           ...           10 years ago
  • 2.1.6 [deprecated]           ...           10 years ago
  • 2.1.5 [deprecated]           ...           10 years ago
  • 2.1.4 [deprecated]           ...           10 years ago
  • 2.1.3 [deprecated]           ...           10 years ago
  • 2.1.2 [deprecated]           ...           10 years ago
  • 2.1.1 [deprecated]           ...           10 years ago
  • 2.1.0 [deprecated]           ...           10 years ago
  • 2.0.1 [deprecated]           ...           10 years ago
  • 2.0.0 [deprecated]           ...           11 years ago
  • 1.0.1 [deprecated]           ...           11 years ago
  • 1.0.0 [deprecated]           ...           11 years ago
  • 0.1.0 [deprecated]           ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (2)
Dev Dependencies (7)

Copyright 2013 - present © cnpmjs.org | Home |