In express.js, I would like to provide an additional attribute on the request object for each of my URI listeners. This would provide the protocol, hostname, and port number. For example:
app.get('/users/:id', function(req, res) {
console.log(req.root); // https://12.34.56.78:1324/
});
I could of course concatenate req.protocol, req.host, and somehow pass around the port number (seems to be missing from the req object) for each one of my URI listeners, but I'd like to be able to do it in a way that all of them could access this information.
Also, the hostname can vary between request (the machine has multiple interfaces) so I can't just concatenate this string when the application launches.
The goal is to provide URI's to the consumer which point to further resources in this API.
Is there some sort of way to tell Express that I want req objects to have this additional information? Is there a better way to do this than what I'm outlining?
See Question&Answers more detail:os