Skip to content

Instantly share code, notes, and snippets.

@ganeshkbhat
Created October 4, 2018 03:00
Show Gist options
  • Select an option

  • Save ganeshkbhat/f8036e12d0a2a630b8f2d81ad855fe8a to your computer and use it in GitHub Desktop.

Select an option

Save ganeshkbhat/f8036e12d0a2a630b8f2d81ad855fe8a to your computer and use it in GitHub Desktop.
ExpressJS Series: Getting the req.ips
app.post("/someUrl", function(req, res) {
 let IPAddress = req.ips;
 res.send(200).send({result: 'Success', tracePaths: IPAddress});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment