Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a simple node.js program running on my machine and I want to get local IP address of PC on which is my program running. How do I get it with node.js?

share|improve this question
food for thought check out joeyh.name/code/moreutils and github.com/polotek/procstreams . I never leave home with out them. – James Andino Jul 22 '12 at 5:31

8 Answers

up vote 9 down vote accepted

Your local IP is always 127.0.0.1.

Then there is the network IP, which you can get from ifconfig (*nix) or ipconfig (win). This is only useful within the local network.

Then there is your external/public IP, which you can only get if you can somehow ask the router for it, or you can setup an external service which returns the client IP address whenever it gets a request. There are also other such services in existence, like whatismyip.com.

In some cases (for instance if you have a WAN connection) the network IP and the public IP are the same, and can both be used externally to reach your computer.

If your network and public IPs are different, you may need to have your network router forward all incoming connections to your network ip.


Update 2013:

There's a new way of doing this now, you can check the socket object of your connection for a property called localAddress, e.g. net.socket.localAddress. It returns the address on your end of the socket.

Easiest way is to just open a random port and listen on it, then get your address and close the socket.

share|improve this answer
Does that mean that to get the network address in nodejs you need to make a system call to ifconfig or ipconfig and parse the response string? – Pumbaa80 Sep 18 '10 at 8:38
@Pumbaa80 - Pretty much, unless your network card has some drivers you can call. Also if you have several network cards (or adapters, like hamachi), there is no way you can just call a function of sorts and get one IP which is THE IP. So parsing it and interpreting the output of of ifconfig is pretty much the only way. – Tor Valamo Sep 18 '10 at 17:25
var os=require('os');
var ifaces=os.networkInterfaces();
for (var dev in ifaces) {
  var alias=0;
  ifaces[dev].forEach(function(details){
    if (details.family=='IPv4') {
      console.log(dev+(alias?':'+alias:''),details.address);
      ++alias;
    }
  });
}
share|improve this answer
2  
that could use some commenting. – Hermann Ingjaldsson Nov 6 '12 at 16:16

Here is a snippet of node.js code that will parse the output of ifconfig and (asynchronously) return the first IP address found:

(tested on MacOS Snow Leopard only; hope it works on linux too)

var getNetworkIP = (function () {
    var ignoreRE = /^(127\.0\.0\.1|::1|fe80(:1)?::1(%.*)?)$/i;

    var exec = require('child_process').exec;
    var cached;    
    var command;
    var filterRE;

    switch (process.platform) {
    // TODO: implement for OSs without ifconfig command
    case 'darwin':
         command = 'ifconfig';
         filterRE = /\binet\s+([^\s]+)/g;
         // filterRE = /\binet6\s+([^\s]+)/g; // IPv6
         break;
    default:
         command = 'ifconfig';
         filterRE = /\binet\b[^:]+:\s*([^\s]+)/g;
         // filterRE = /\binet6[^:]+:\s*([^\s]+)/g; // IPv6
         break;
    }

    return function (callback, bypassCache) {
         // get cached value
        if (cached && !bypassCache) {
            callback(null, cached);
            return;
        }
        // system call
        exec(command, function (error, stdout, sterr) {
            var ips = [];
            // extract IPs
            var matches = stdout.match(filterRE);
            // JS has no lookbehind REs, so we need a trick
            for (var i = 0; i < matches.length; i++) {
                ips.push(matches[i].replace(filterRE, '$1'));
            }

            // filter BS
            for (var i = 0, l = ips.length; i < l; i++) {
                if (!ignoreRE.test(ips[i])) {
                    //if (!error) {
                        cached = ips[i];
                    //}
                    callback(error, ips[i]);
                    return;
                }
            }
            // nothing found
            callback(error, null);
        });
    };
})();

Usage example:

getNetworkIP(function (error, ip) {
    console.log(ip);
    if (error) {
        console.log('error:', error);
    }
}, false);

If the second parameter is true, the function will exec a system call every time; otherwise the cached value is used.


Updated version

Returns an array of all local network addresses.

Tested on Ubuntu 11.04 and Windows XP 32

var getNetworkIPs = (function () {
    var ignoreRE = /^(127\.0\.0\.1|::1|fe80(:1)?::1(%.*)?)$/i;

    var exec = require('child_process').exec;
    var cached;
    var command;
    var filterRE;

    switch (process.platform) {
    case 'win32':
    //case 'win64': // TODO: test
        command = 'ipconfig';
        filterRE = /\bIPv[46][^:\r\n]+:\s*([^\s]+)/g;
        break;
    case 'darwin':
        command = 'ifconfig';
        filterRE = /\binet\s+([^\s]+)/g;
        // filterRE = /\binet6\s+([^\s]+)/g; // IPv6
        break;
    default:
        command = 'ifconfig';
        filterRE = /\binet\b[^:]+:\s*([^\s]+)/g;
        // filterRE = /\binet6[^:]+:\s*([^\s]+)/g; // IPv6
        break;
    }

    return function (callback, bypassCache) {
        if (cached && !bypassCache) {
            callback(null, cached);
            return;
        }
        // system call
        exec(command, function (error, stdout, sterr) {
            cached = [];
            var ip;
            var matches = stdout.match(filterRE) || [];
            //if (!error) {
            for (var i = 0; i < matches.length; i++) {
                ip = matches[i].replace(filterRE, '$1')
                if (!ignoreRE.test(ip)) {
                    cached.push(ip);
                }
            }
            //}
            callback(error, cached);
        });
    };
})();
share|improve this answer
sure... works on linux (tested on ubuntu)... – xpepermint Dec 3 '11 at 21:35
Tested just now on OSX Lion, perfect. Thanks so much! – Virgil Disgr4ce May 3 '12 at 21:49
I had to remove the hyphen after the word "IP" in your Windows regexp, because my output didn't have the hyphen (I'm using Windows XP 32-bit). I don't know if that was a typo or if your Windows version really outputs a hyphen after "IP", but just to be on the safe side, I suppose it can be made optional: filterRE = /\bIP-?[^:\r\n]+:\s*([^\s]+)/g;. Aside from that, great script, a true lifesaver. Many thanks! – jSepia Jul 6 '12 at 18:14
@jSepia: That's probably a localization thing. German Windows prints "IP-Adresse" ;) – Pumbaa80 Jul 6 '12 at 18:19
Fair enough, but now you broke it again :p My ipconfig output doesn't include "v4" nor "v6", that seems to be a Vista/7 thing (see technet.microsoft.com/en-us/library/bb726952.aspx ) – jSepia Jul 6 '12 at 23:40
show 1 more comment

os.networkInterfaces as of right now doesn't work on windows. Running programs to parse the results seems a bit iffy. Here's what I use.

require('dns').lookup(require('os').hostname(), function (err, add, fam) {
  console.log('addr: '+add);
})

This should return your first network interface local ip.

share|improve this answer
2  
I think this answer deserves more upvotes! – Tom May 28 '12 at 14:03
tried it, didnt work. – Hermann Ingjaldsson Nov 6 '12 at 16:16
@HermannIngjaldsson: This is not a very thoroughly informative criticism. Could you be more specific? Maybe take the example code and put it into a new question providing more details and asking why it doesn't work? – Xedecimal Nov 7 '12 at 20:11
4  
os.networkInterfaces() works on Windows now. – josh3736 Dec 17 '12 at 19:18
1  
It is not always a good idea to use the DNS lookup, as it can return wrong information (i.e. cached data). Using 'os.networkInterfaces' is a better idea in my opinion. – Guido García Feb 28 at 19:55
show 2 more comments

Calling ifconfig is very platform-dependent, and the networking layer does know what ip addresses a socket is on, so best is to ask it. Node doesn't expose a direct method of doing this, but you can open any socket, and ask what local IP address is in use. For example, opening a socket to www.google.com:

var net = require('net');
function getNetworkIP(callback) {
  var socket = net.createConnection(80, 'www.google.com');
  socket.on('connect', function() {
    callback(undefined, socket.address().address);
    socket.end();
  });
  socket.on('error', function(e) {
    callback(e, 'error');
  });
}

Usage case:

getNetworkIP(function (error, ip) {
    console.log(ip);
    if (error) {
        console.log('error:', error);
    }
});
share|improve this answer
In case you're wondering - this does not necessarily get the public IP address that the world sees. – artur Sep 21 '11 at 16:05
Would be a nice solution if it didn't depend on internet connection and its speed.. – Jacob R Nov 1 '11 at 10:21

Any IP of your machine you can find by using the os module - and that's native to NodeJS

var os = require( 'os' );

var networkInterfaces = os.networkInterfaces( );

console.log( networkInterfaces );

All you need to do is call os.networkInterfaces() and you'll get an easy manageable list - easier than running ifconfig by leagues

http://nodejs.org/api/os.html#os_os_networkinterfaces

Best

Edoardo

share|improve this answer

I'm using node.js 0.6.5

$ node -v
v0.6.5

Here is what I do

var util = require('util');
var exec = require('child_process').exec;
function puts(error, stdout, stderr) {
        util.puts(stdout);
}
exec("hostname -i", puts);
share|improve this answer

Here's my utility method for getting the local IP address, assuming you are looking for an IPv4 address and the machine only has one real network interface. It could easily be refactored to return an array of IPs for multi-interface machines.

function getIPAddress() {
  var interfaces = require('os').networkInterfaces();
  for (var devName in interfaces) {
    var iface = interfaces[devName];

    for (var i = 0; i < iface.length; i++) {
      var alias = iface[i];
      if (alias.family === 'IPv4' && alias.address !== '127.0.0.1' && !alias.internal)
        return alias.address;
    }
  }

  return '0.0.0.0';
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.