Hi i'm on a lynda course JavaScript and AJAX . I'm working just on ajax using json updating the dom and jquery my problem is that i don't know how to install the right server in order to test for my request and see if it works for example i got a simple file in witch i got these elements
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>JavaScript AJAX</title>
</head>
<body>
<script src="script.js"></script>
</body>
</html>
script.js
var request = new XMLHttpRequest();
request.open('GET', 'data.txt', false);
request.send();
console.log(request);
data.txt hello world