Node.js process.getegid() 方法
process.getegid() 方法是 process 模块的一个内置应用程序编程接口,用于获取 Node.js 进程的数字有效组标识。
句法:
process.getegid()
参数:此方法不接受任何参数。
返回值:它返回一个指定Node.js进程的数字有效组标识的对象。
注意:此函数仅适用于 POSIX 平台。在 windows 或 android 平台上不可用,因此会导致错误,即 TypeError, getegid is not a 函数。
下面的例子说明了在 Node.js 中process.getegid() 方法的使用:
示例 1:
// Node.js program to demonstrate the
// process.getegid() Method
// Include process module
const process = require('process');
// Print the numerical effective group
// identity of the Node.js process
console.log(process.getegid());
输出:
0
示例 2:
// Node.js program to demonstrate the
// process.getegid() Method
// Include process module
const process = require('process');
// Check whether the method exists or not
if (process.getegid) {
// Printing getegid() value
console.log("The numerical effective group"
+ " identity of the Node.js process:"
+ process.getegid());
}
输出:
The numerical effective group identity of the Node.js process: 0
注意:上面的程序将使用node filename.js
命令编译和运行。
参考: https://nodejs.org/api/process.html#process_process_getegid