This repository has been archived on 2021-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
simpledash/bulma/node_modules/cross-spawn
Elara bb2c9351d6 Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
..
lib Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
.editorconfig Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
.eslintrc Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
.npmignore Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
.travis.yml Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
LICENSE Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
README.md Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
appveyor.yml Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
index.js Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
package.json Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00

README.md

cross-spawn

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

A cross platform solution to node's spawn and spawnSync.

Installation

$ npm install cross-spawn

If you are using spawnSync on node 0.10 or older, you will also need to install spawn-sync:

$ npm install spawn-sync

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. 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 or spawnSync, so it's a drop in replacement.

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

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

// Spawn NPM synchronously
var results = spawn.sync('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' });

Tests

$ npm test

License

Released under the MIT License.