📜  节点获取当前 url - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:27.932000             🧑  作者: Mango

代码示例3
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
    });