진짜 서버 연결 전, 프론트엔드 구현하는 것을 도와주는 임시서버
$yarn add json-server
$yarn json-server --watch db.json --port 3001
- port 번호는 react 서버와 겹치지 않는 숫자로 작성
- http://localhost:3003
: 이렇게 열면 서버가 열리는 것을 확인할 수 있음
{
"todos": [
{
"id": 1,
"title": "json-server",
"content": "json-server를 배워봅시다."
}
]
}
http://localhost:3003/todos
- 서버 url 뒤에 데이터 이름 넣기
$yarn add axios
CRUD 구현하는 4가지 method
- POST - create
- GET - read
- PATCH - update
- DELETE - delete
axios에 대해서 간단하게 설명을 해주실 수 있으실까요?