パッケージの詳細

@fengmk2/ps-tree

fengmk2841MIT2.0.2

Get all children of a pid and support CommonJS and ESM both

readme

@fengmk2/ps-tree

NPM version Node.js CI Test coverage Known Vulnerabilities npm download Node.js Version

Fork indexzero/ps-tree, refactor in TypeScript to support CommonJS and ESM both

Sometimes you cannot kill child processes like you would expect, this a feature of UNIX.

in UNIX, a process may terminate by using the exit call, and it's parent process may wait for that event by using the wait system call. the wait system call returns the process identifier of a terminated child, so that the parent tell which of the possibly many children has terminated. If the parent terminates, however, all it's children have assigned as their new parent the init process. Thus, the children still have a parent to collect their status and execution statistics. (from "operating system concepts")

Solution: use ps-tree to get all processes that a child_process may have started, so that they may all be terminated.

import cp from 'node:child_process';

const child = cp.exec("node -e 'while (true);'", function () {...});

// This will not actually kill the child it will kill the `sh` process.
child.kill();

wtf? it's because exec actually works like this:

function exec(cmd, cb) {
  spawn('sh', ['-c', cmd]);
  ...
}

sh starts parses the command string and starts processes, and waits for them to terminate, but exec returns a process object with the pid of the sh process. However, since it is in wait mode killing it does not kill the children.

Use ps-tree like this:

import cp from 'node:child_process';
import { psTree } from '@fengmk2/ps-tree';

const child = cp.exec("node -e 'while (true);'", function () { /*...*/ });

psTree(child.pid)
  .then(children => {
    cp.spawn('kill', ['-9'].concat(children.map(function (p) { return p.PID })));
  }).catch(err => {
    console.error(err);
  });

If you prefer to run psTree from the command line, use: node ./bin/ps-tree.cjs

Cross Platform support

The ps-tree module behaves differently on *nix vs. Windows by spawning different programs and parsing their output. This is based on process.platform and not on checking to see if a ps compatible program exists on the system.

*nix

  1. " <defunct> " need to be striped
$ ps -A -o comm,ppid,pid,stat
COMMAND          PPID   PID STAT
bbsd             2899 16958 Ss
watch <defunct>  1914 16964 Z
ps              20688 16965 R+

Windows

  1. wmic PROCESS WHERE ParentProcessId=4604 GET Name,ParentProcessId,ProcessId,Status)
  2. The order of head columns is fixed
> wmic PROCESS GET Name,ProcessId,ParentProcessId,Status
Name                          ParentProcessId  ProcessId   Status
System Idle Process           0                0
System                        0                4
smss.exe                      4                228

Mac/Darwin

  1. " " need to be striped
$ ps -A -o comm,ppid,pid,stat
COMM              PPID   PID STAT
/sbin/launchd        0     1 Ss
/usr/libexec/Use     1    43 Ss

LICENSE

MIT

Contributors

Contributors

Made with contributors-img.

更新履歴

Changelog

2.0.2 (2024-12-15)

Bug Fixes

2.0.1 (2024-12-14)

Bug Fixes

2.0.0 (2024-12-14)

⚠ BREAKING CHANGES

  • drop Node.js < 18.19.0 support

part of https://github.com/eggjs/egg/issues/3644

Features

  • support cjs and esm both by tshy (#1) (da3e932)

CHANGELOG

1.2.0

  • [#24] Improve performance
  • [#27] Make tests deterministic
  • [#29] Improve CI configurations

1.1.1

  • [#34] Locks event-stream to 3.3.4.