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?
|
|
Your local IP is always 127.0.0.1. Then there is the network IP, which you can get from 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 Easiest way is to just open a random port and listen on it, then get your address and close the socket. |
|||||
|
|
|||||||
|
|
Here is a snippet of node.js code that will parse the output of (tested on MacOS Snow Leopard only; hope it works on linux too)
Usage example:
If the second parameter is Updated versionReturns an array of all local network addresses. Tested on Ubuntu 11.04 and Windows XP 32
|
|||||||||||
|
|
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.
This should return your first network interface local ip. |
|||||||||||||||||
|
|
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:
Usage case:
|
|||
|
Any IP of your machine you can find by using the os module - and that's native to NodeJS
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 |
||||
|
|
|
I'm using node.js 0.6.5
Here is what I do
|
|||
|
|
|
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.
|
|||
|
|