On this page

    P

    process.ppid

    History
    Type:integer

    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}`);
    const { ppid } = require('node:process');
    
    console.log(`The parent process is pid ${ppid}`);