diff --git a/doc/api/child_process.md b/doc/api/child_process.md index ad712eb8786f59..c90e206ca77cda 100644 --- a/doc/api/child_process.md +++ b/doc/api/child_process.md @@ -1434,6 +1434,34 @@ console.log(`Spawned child pid: ${grep.pid}`); grep.stdin.end(); ``` +### `subprocess.hasRef()` + + + +> Stability: 1 - Experimental + +* Returns: {boolean} + +Indicates whether a `subprocess` is "ref'ed" by the parent process's event +loop. If `true`, the parent waits for the child to exit before exiting itself. + +```js +const { spawn } = require('node:child_process'); + +const subprocess = spawn(process.argv[0], ['child_program.js'], { + detached: true, + stdio: 'ignore', +}); + +subprocess.on('exit', (code) => { + subprocess.hasRef(); // false +}); + +subprocess.hasRef(); // true +``` + ### `subprocess.ref()`