To jest mój kod:
var XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;
var xhr = new XMLHttpRequest();
xhr.open("GET", "//URL")
xhr.setRequestHeader("Content-Type: application/json", "Authorization: Basic //AuthKey");
xhr.send();
Otrzymuję błąd:
Cannot find module 'xmlhttprequest'
Kiedy usuwam pierwszą linię, otrzymuję:
XMLHttpRequest is not defined
Szukałem wszędzie i ludzie wspominali o problemie z Node.js tu i tam, ale moja instalacja Node była poprawna, więc nie jestem pewien, na czym polega problem.