Skip to content

Instantly share code, notes, and snippets.

Created December 20, 2014 15:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/1f9688592c51fae894f2 to your computer and use it in GitHub Desktop.
Save anonymous/1f9688592c51fae894f2 to your computer and use it in GitHub Desktop.
var http = require('http')
var net = require('net')
var server = http.createServer(function (req, res) {
var ip = req.header('x-forwarded-for') || req.connection.remoteAddress;
console.log(ip);
})
server.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment