getuid
The process.getuid() method returns the numeric user identity of the process. (See getuid(2).)
import process from 'node:process';
if (process.getuid) {
console.log(`Current uid: ${process.getuid()}`);
}Content copied to clipboard
This function is only available on POSIX platforms (i.e. not Windows or Android).
Since
v0.1.28