Skip to main content
Module

x/lume/core/utils/net.ts

πŸ”₯ Static site generator for Deno πŸ¦•
Very Popular
Latest
File
export function localIp(): string | undefined { for (const info of Deno.networkInterfaces()) { if (info.family !== "IPv4" || info.address.startsWith("127.")) { continue; }
return info.address; }}