Obtenga IP del usuario en el nodo JS

//In your request object there is a property called connection, 
//which is a net.Socket object. The net.Socket object has a property 
//remoteAddress, therefore you should be able to get the IP with this call:

request.connection.remoteAddress
Now, Get Back To Coding