Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

getting "unexpected end of file" axios error while making a get request in this small nodejs app

I have been getting this error in this small nodejs app while trying to learn using axios on the backend to make request. "unexpected end of file".

axios request file

import axios from "axios";

export const getData = async () => {
  let data;
  try {
    const response = await axios.get(
      "https://jsonplaceholder.typicode.com/users"
    );
    console.log(response);
    data = response;
  } catch (error) {
    console.log(error.message);
    return;
  }
  return data;
};
    
    
    

server.js

import express from "express";
import cors from 'cors';
import axios from "axios";
import { getData } from "./utils/getData.js";

const app = express();
app.use(cors());
app.use(express.json());

app.get("/", async (req, res) => {
    let users;
    users = await getData();
    res.send(users); 
})


app.listen(5000, () => {
    console.log("server listening at port 5000");
})
like image 748
AKHIL PANWAR Avatar asked Nov 30 '25 10:11

AKHIL PANWAR


1 Answers

You can add below header encoding to your request.

axios.get("url", { 
    headers: { "Accept-Encoding": "gzip,deflate,compress" } 
});
like image 192
oegretli Avatar answered Dec 03 '25 02:12

oegretli



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!