Currently my code is the following:
const fetch = require("node-fetch");
(async function () {
console.log(await fetch("https://a.website.in-ht.ml"));
})()
However, It is only returning data on the website, as opposed to the HTML. Anyone know what the issue may be?
(As the title says, I am using v2.6 not 3.0+)