how to access current url in nodejs code example
Example 1: express get full url
var fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
Example 2: express get host url
const hostWithProtocol = req.protocol + '://' + req.get('host')