기본적으로 현재 프로젝트는 yarn을 기반으로 세팅되어있습니다. yarn이 설치되지 않았다면 설치해주세요.
yarn install
local환경 실행
yarn start
API 서버 실행
yarn dev
[GET] products 전체 조회
instance.get('/products').then((data) => console.log(data));
[GET] 필터기능 products 남성만 조회
instance.get('/products?gender=man').then((data) => console.log(data));
[GET] products id=1 데이터 조회
instance.get('/products/1').then((data) => console.log(data));
[DELETE] products id=1 데이터 삭제
instance.delete('/products/1').then((data) => console.log(data));
[GET] products 전체 조회
instance.get('/products').then((data) => console.log(data));