🔥 Today


  • [ByteDegree] react

    • data.json 파일을 만들어서 가짜 API 서버를 만들어보았다.
    • npx json-server ./data.json --port 4000

    • http://localhost:4000/posts 링크로 들어가면 만들어놓은 가짜 데이터가 조회된다.


  • axios로 API를 요청하여 사용
export const getPostById = async (id) => {
  const response = await axios.get(`http://localhost:4000/posts/${id}`);
  return response.data;
};


🔥 To Do


  • [ecommerce-website] ⏩
  • [부스트코스] project B
  • [Algorithm] javaScript 매일 1문제 이상 풀기
  • [부스트코스] CS 자료구조, 알고리즘 강의


  • [ByteDegree] React 7주차 - Redux, 리덕스 미들웨어 ⏩
    • 7주차 Quiz : ~ 01/11
      • Mini Project / Part2 / 지출 기록 서비스 구현 : 12/21 ~ 01/04