json server


インストールnpm install -g json-server.jsonファイルの作成

data.jsonでgameTimeとhotGroupデータが作成されました

うんてんjson-server --watch 파일경로/파일이름.json --port 4000ex) json-server --watch ./data.json --port 4000
読み込み
import axios from 'axios';

export const getPosts = async () => {
  const response = await axios.get('http://localhost:4000/데이터이름(ex:gameTime');
  return response.data;
};

export const getPostById = async id => {
  const response = await axios.get(`http://localhost:4000/posts/${id}`);
  return response.data;
};
リファレンス
https://react.vlpt.us/redux-middleware/08-json-server.html