Press "Enter" to skip to content

Posts published in Eylül 2024

Node js Send Http Request

Selahaddin Erdoğan 0

Bu yazımızda bir adrese http request gönderen kodu paylaşacağız. const http = require(“http”);   http.get(“http://www.google.com”, res => {     let data = “”;     res.on(“data”, chunk => data…