Answers for "how to get url node"

0

node get current url

const fullUrl = `${req.protocol}://${req.get("host")}${req.originalUrl}`;
Posted by: Guest on May-03-2021
-1

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
    });
Posted by: Guest on April-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language