1import internalIp from 'internal-ip'; 2 3export function getIpAddress(): string { 4 return internalIp.v4.sync() || '127.0.0.1'; 5} 6