开发者

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(res开发者_开发问答ponse);
    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");
})
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜