Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
function Deno.uid
allow-sys

Returns the user id of the process on POSIX platforms. Returns null on Windows.

console.log(Deno.uid());

Requires allow-sys permission.

Returns

number | null