当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js process.geteuid()用法及代码示例


process.geteuid()方法是流程模块的内置应用程序编程接口,用于获取Node.js流程的数字有效用户身份。

用法:

process.geteuid()

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


返回值:此方法返回一个对象,该对象指定Node.js进程的数字有效用户身份。

注意:此方法仅适用于POSIX平台。在Windows或Android平台上不可用,因此会导致错误,即TypeError,geteuid不是函数。

以下示例说明了Node.js中process.geteuid()方法的使用:

范例1:

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

输出:

6693036

范例2:

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

输出:

The numerical effective user identity of the Node.js process:6693036

注意:上面的程序将通过使用node filename.js命令。

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



相关用法


注:本文由纯净天空筛选整理自anwesha0107大神的英文原创作品 Node.js | process.geteuid() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。