📜  Node.js process.getgid() 方法

📅  最后修改于: 2022-05-13 01:56:22.143000             🧑  作者: Mango

Node.js process.getgid() 方法

process.getgid() 方法是 process 模块的内置应用程序编程接口,用于获取 Node.js 进程的数字组标识。

句法:

process.getgid()

参数:此方法不接受任何参数。

返回值:它返回一个指定 Node.js 进程的数字组标识的对象。

注意:此方法仅适用于 POSIX 平台。在 windows 或 android 平台上不可用,因此会导致错误,即 TypeError, getgid is not a 函数。

下面的例子说明了在 Node.js 中process.getgid() 方法的使用:

示例 1:

// Node.js program to demonstrate the     
// process.getgid() method  
   
// Include process module
const process = require('process');
  
// Printing the numerical group
// identity of the Node.js process
console.log(process.getgid());

输出:

1000

示例 2:

// Node.js program to demonstrate the     
// process.getgid() method  
   
// Include process module
const process = require('process');
  
// Checking whether this method
// exists or not
if (process.getgid) {
    
  // Printing getgid() value
  console.log("The numerical group identity "
              + "of the Node.js process: "
              + process.getgid());
}

输出:

The numerical group identity of the Node.js process: 1000

注意:上面的程序将使用node filename.js命令编译和运行。

参考: https://nodejs.org/api/process.html#process_process_getgid