Skip to main content

ppid

property Process.ppid

The process.ppid property returns the PID of the parent of the current process.

import { ppid } from 'node:process';

console.log(`The parent process is pid ${ppid}`);
number
Back to top