當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。