📜  如何获取 url 节点 - Javascript 代码示例

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

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