Gathering detailed insights and metrics for cross-spawn
Gathering detailed insights and metrics for cross-spawn
Gathering detailed insights and metrics for cross-spawn
Gathering detailed insights and metrics for cross-spawn
A cross platform solution to node's spawn and spawnSync
npm install cross-spawn
Typescript
Module System
Min. Node Version
Node Version
NPM Version
97.9
Supply Chain
96.5
Quality
79
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Total Downloads
18,002,033,142
Last Day
6,011,133
Last Week
94,916,029
Last Month
410,907,920
Last Year
4,113,910,296
MIT License
1,144 Stars
229 Commits
128 Forks
24 Watchers
2 Branches
20 Contributors
Updated on Jul 04, 2025
Minified
Minified + Gzipped
Latest Version
7.0.6
Package Id
cross-spawn@7.0.6
Unpacked Size
15.72 kB
Size
6.11 kB
File Count
9
NPM Version
10.5.2
Node Version
20.13.1
Published on
Nov 18, 2024
Cumulative downloads
Total Downloads
Last Day
-8%
6,011,133
Compared to previous day
Last Week
-7.6%
94,916,029
Compared to previous week
Last Month
2.1%
410,907,920
Compared to previous month
Last Year
20.2%
4,113,910,296
Compared to previous year
A cross platform solution to node's spawn and spawnSync.
Node.js version 8 and up:
$ npm install cross-spawn
Node.js version 7 and under:
$ npm install cross-spawn@6
Node has issues when using spawn on Windows:
./my-folder/my-executable
)node_modules/.bin/
), where arguments with quotes and parenthesis would result in invalid syntax erroroptions.shell
support on node <v4.8
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.
Exactly the same way as node's spawn
or spawnSync
, so it's a drop in replacement.
1const spawn = require('cross-spawn'); 2 3// Spawn NPM asynchronously 4const child = spawn('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' }); 5 6// Spawn NPM synchronously 7const result = spawn.sync('npm', ['list', '-g', '-depth', '0'], { stdio: 'inherit' });
options.shell
as an alternative to cross-spawn
Starting from node v4.8
, spawn
has a shell
option that allows you run commands from within a shell. This new option solves
the PATHEXT issue but:
<v4.8
If you are using the shell
option to spawn a command in a cross platform way, consider using cross-spawn
instead. You have been warned.
options.shell
supportWhile cross-spawn
adds support for options.shell
in node <v4.8
, all of its enhancements are disabled.
This mimics the Node.js behavior. More specifically, the command and its arguments will not be automatically escaped nor shebang support will be offered. This is by design because if you are using options.shell
you are probably targeting a specific platform anyway and you don't want things to get into your way.
While cross-spawn
handles shebangs on Windows, its support is limited. More specifically, it just supports #!/usr/bin/env <program>
where <program>
must not contain any arguments.
If you would like to have the shebang support improved, feel free to contribute via a pull-request.
Remember to always test your code on Windows!
$ npm test
$ npm test -- --watch
during development
Released under the MIT License.
7.5/10
Summary
Regular Expression Denial of Service (ReDoS) in cross-spawn
Affected Versions
< 6.0.6
Patched Versions
6.0.6
7.5/10
Summary
Regular Expression Denial of Service (ReDoS) in cross-spawn
Affected Versions
>= 7.0.0, < 7.0.5
Patched Versions
7.0.5
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 3
Details
Reason
Found 8/29 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
46 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More