특징
cd client
폴더 이동 후 npm install axios --save
LandingPage
//생략
useEffect(()=>{
//서버에 GET 요청을 보내고, 그에 따른 응답을 콘솔 창에 전시
axios.get('/api/hello')
.then(response=>console.log(response.date));
},[]);
//생략
index.js
//생략
app.get('/api/hello',(req,res)=>{
res.send("안녕하세요~");
})
//생략
www.inflearn.com/course/따라하며-배우는-노드-리액트-기본