File size: 971 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import os from 'os'
function getNetworkHosts(family: 'IPv4' | 'IPv6'): string[] {
const interfaces = os.networkInterfaces()
const hosts: string[] = []
Object.keys(interfaces).forEach((key) => {
interfaces[key]
?.filter((networkInterface) => {
switch (networkInterface.family) {
case 'IPv6':
return (
family === 'IPv6' &&
networkInterface.scopeid === 0 &&
networkInterface.address !== '::1'
)
case 'IPv4':
return family === 'IPv4' && networkInterface.address !== '127.0.0.1'
default:
return false
}
})
.forEach((networkInterface) => {
if (networkInterface.address) {
hosts.push(networkInterface.address)
}
})
})
return hosts
}
export function getNetworkHost(family: 'IPv4' | 'IPv6'): string | null {
const hosts = getNetworkHosts(family)
return hosts[0] ?? null
}
|