node-cross-spawn icon indicating copy to clipboard operation
node-cross-spawn copied to clipboard

A cross platform solution to node's spawn and spawnSync

Results 31 node-cross-spawn issues
Sort by recently updated
recently updated
newest added

In my use of `cross-spawn` (actually via the `cross-env` package), I have discovered that there is some special error-emission behavior (apparently for Windows and `cmd.exe`?) implemented by the `enoent.js` source...

This shouldn't "work": ``` ❯ node.exe > crossSpawn = require('cross-spawn') > crossSpawn('echo foo bar',[],{stdio:'inherit'}) foo bar ``` `echo foo bar` should be treated in its entirety as the name of...

Trying to run a project that uses cross-spawn and in Windows `spawn()` spawns a cmd that the runs my command. When killing the spawned pid the node process doesn't die:...

Stack trace: Hey guys, I have a problem with child_process on windows while using ipc so I asked [a question](https://stackoverflow.com/questions/63303200/node-child-process-spawn-bad-file-descriptor-on-windows-with-ipc). I found this module to solve it but the same...

When I press ctrl+c on the termianl while I run a script that uses croos-spawn, it does not stop the child process Notice I use `spawn.sync`. But even without `sync`,...

Hi, while tracking down an issue raised quentinrossetti/node-7zip#89 on a package I discovered that the `windowsHide` option does not work with `cross-spawn`. I've done some digging into you codebase but...

I've been trying to track down an issue with double quotes in my arguments and it has led me to believe that the escapeArgument function in this package is the...

I opened an issue in eslint, but that led us here. Please refer to https://github.com/eslint/eslint/issues/13681 **Environment:** ESLint Version: 6.8.0 Node Version: 12.11.1 npm Version: 6.11.3 **What did you do? Please...

I have come across a problem (as a user of LaTeX Workshop, https://github.com/James-Yu/LaTeX-Workshop/issues/2282) when I had a tilde in my PATH. Many things worked, but it seems `cs.spawn` was failing....