Axios in Ubuntu returns a response in unreadable form, in Windows same snippet works well
I have a simple code that fetches data from url. I have executed same code in both Ubuntu(server-only) and Windows Code import axios from "axios"; (async () => { const url = "https://cdn.jsdelivr.net/gh/fawazahmed0/currency-api@1/latest/currencies/inr/usd.json"; fetch(url).then((res) => { return res.json(); }).then((data) =>…