node get current url code example
Example 1: express get full url
var fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
Example 2: get full url nodejs
var fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
Example 3: node get current url
const fullUrl = `${req.protocol}://${req.get("host")}${req.originalUrl}`;
Example 4: how to get url node
const https = require("https");
const url = https://url.com
app.get("/", function(req, res){
https.get(url, function(res){
console.log(res);
});