spawn-wrap icon indicating copy to clipboard operation
spawn-wrap copied to clipboard

Wrap all spawned Node.js child processes by adding environs and arguments ahead of the main JavaScript file argument.

Results 20 spawn-wrap issues
Sort by recently updated
recently updated
newest added

Bumps [minimist](https://github.com/minimistjs/minimist) from 1.2.5 to 1.2.8. Changelog Sourced from minimist's changelog. v1.2.8 - 2023-02-09 Merged [Fix] Fix long option followed by single dash [#17](https://github.com/minimistjs/minimist/issues/17) [Tests] Remove duplicate test [#12](https://github.com/minimistjs/minimist/issues/12) [Fix]...

dependencies

Bumps [json5](https://github.com/json5/json5) from 2.2.0 to 2.2.3. Release notes Sourced from json5's releases. v2.2.3 Fix: [email protected] is now the 'latest' release according to npm instead of v1.0.2. (#299) v2.2.2 Fix: Properties...

dependencies

Bumps [standard-version](https://github.com/conventional-changelog/standard-version) from 7.1.0 to 8.0.1. Release notes Sourced from standard-version's releases. standard-version v8.0.1 Bug Fixes deps: update dependency conventional-changelog to v3.1.21 (#586) (fd456c9) deps: update dependency conventional-changelog-conventionalcommits to v4.3.0...

dependencies

Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.0 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@​ChALkeR). Fix boolean schemas with strictKeywords...

dependencies

Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.1.1 to 5.1.2. Release notes Sourced from glob-parent's releases. v5.1.2 Bug Fixes eliminate ReDoS (#36) (f923116) Changelog Sourced from glob-parent's changelog. 5.1.2 (2021-03-06) Bug Fixes eliminate ReDoS...

dependencies

I have a lot of folders that start with `~/.node-spawn-wrap`. Which looks to be created by this package based on (https://github.com/istanbuljs/spawn-wrap/commit/5bcb2884a4a15fa353ba95a00b157da22a0eec2a). Is it safe to delete those folders?

Hi, Last year I did some work on `spawn-wrap` [on my fork](https://github.com/demurgos/spawn-wrap/tree/releases) to support hooking the Node inspector into Node processes deep in the process tree. I eventually built a...

[`cross-spawn`](https://github.com/moxystudio/node-cross-spawn) is a popular package to fix some of Node's shortcomings when spawning processes on Windows (such as escaping arguments). We should add some tests spawning processes through this library...

Node started to deprecate `process.binding`: https://nodejs.org/dist/latest-v11.x/docs/api/deprecations.html#deprecations_dep0111_process_binding This function is used by spawn-wrap to patch `spawnSync`. It is possible to avoid patching the internals at the top level by creating a...