UNPKG

local-ipv4-address

Version:

Get the local network IPv4 address of the local computer based on the default gateway

11 lines (8 loc) 300 B
var os = require('os'); module.exports.getIpV4AddressForInterface = function(interfaceName){ var interface = os.networkInterfaces()[interfaceName]; var ipv4Address = interface.filter(function(address){ return address.family === "IPv4"; })[0].address; return ipv4Address; };