import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { hostname } = Deno;
Get the hostname
of the machine the Deno process is running on.
console.log(Deno.hostname());
Requires allow-sys
permission.
import { Deno } from "https://deno.land/x/deno@v2.0.4/cli/tsc/dts/lib.deno.ns.d.ts";
const { hostname } = Deno;
Get the hostname
of the machine the Deno process is running on.
console.log(Deno.hostname());
Requires allow-sys
permission.