get current url nodejs code example
Example 1: javascript get current url
var currentUrl = window.location.href;
Example 2: express get full url
var fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
Example 3: get full url nodejs
var fullUrl = req.protocol + '://' + req.get('host') + req.originalUrl;
Example 4: node get current url
const fullUrl = `${req.protocol}://${req.get("host")}${req.originalUrl}`;
Example 5: how to get url node
const https = require("https"); //First require the module
const url = https://url.com
//good practice is to assign the url to a const named url//
app.get("/", function(req, res){
https.get(url, function(res){
console.log(res);//if you wish to console log the respone from the server
});