Bu benim kodum:
var XMLHttpRequest = require("xmlhttprequest").XMLHttpRequest;
var xhr = new XMLHttpRequest();
xhr.open("GET", "//URL")
xhr.setRequestHeader("Content-Type: application/json", "Authorization: Basic //AuthKey");
xhr.send();
Şu hatayı alıyorum:
Cannot find module 'xmlhttprequest'
İlk satırı kaldırdığımda şunu alıyorum:
XMLHttpRequest is not defined
Her yerde aradım ve insanlar burada ve orada Node.js ile ilgili bir sorundan bahsetti ancak Node kurulumum doğru olduğundan sorunun ne olduğundan emin değilim.