eshost-cli
eshost-cli copied to clipboard
Run ECMAScript code uniformly across any ECMAScript host
Results
21
eshost-cli issues
Sort by
recently updated
recently updated
newest added
`eshost` currently spawns child processes with [`detached: true`](https://nodejs.org/docs/latest/api/child_process.html#optionsdetached): https://github.com/tc39/eshost/blob/3989a6bc659c1dc9e44236c10ea772a7f2d4e480/lib/ConsoleAgent.js#L100 As a result, killing an `eshost` process with e.g. SIGINT or SIGTERM leaves its children running. It should instead explicitly `destroy()`...