app.get("/basicAuth", async(req,res) =>{
try{
const jsObj = await axios.get("API_URL", {
auth: {
username: "username"
passowrd: "password"
},
});