import { Injectable } from '@angular/core'; import { internalIpV4 } from 'internal-ip'; @Injectable({ providedIn: 'root' }) export class IpService { async getLocalIpAddress(): Promise { const ipAddress = await internalIpV4(); console.log(ipAddress) return ipAddress; } }