Вам нужно http запрос сделать:
const http = require("http");
const url =
"www.cstrade.club/priceData.json";
http.get(url, res => {
res.setEncoding("utf8");
let body = "";
res.on("data", data => {
body += data;
});
res.on("end", () => {
json = JSON.parse(body);
console.log(json);
});
});