Javascript

Making HTTP GET Requests in JavaScript

A note on how to make HTTP GET requests in the JavaScript programming language. <pre><code>var xhttp = new XMLHttpRequest();xhttp.open("GET", "http://192.168.3.19:4567/", true);xhttp.send…

Shou Arisaka
1 min read
Oct 20, 2025

A note on how to make HTTP GET requests in the JavaScript programming language.

var xhttp = new XMLHttpRequest();
xhttp.open("GET", "http://192.168.3.19:4567/", true);
xhttp.send();

Share this article

Shou Arisaka Oct 20, 2025

🔗 Copy Links