mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
9 lines
212 B
JavaScript
9 lines
212 B
JavaScript
import {networkInterfaces} from 'os';
|
|
|
|
console.log(
|
|
Object.entries(networkInterfaces())
|
|
.map(([, info]) => info)
|
|
.flat()
|
|
.find(info => info && !info.internal && info.family === 'IPv4')?.address,
|
|
);
|