oratosquilla

oratosquilla

fetch api wrapper on frontend react hooks.

SetUp

git clone [email protected]:ogasawaraShinnosuke/oratosquilla.git
cd oratosquilla
yarn install

Started

  • yarn dev
  • yarn server
  1. Please open ‘http://localhost:8080
  2. When you click ‘all’ button, fetch express server api with “oratosquilla”

How to use

const [loading, api] = useApiCall({
  endpoint: 'http://localhost:3001/api/human',
});

api.all({
  successCallback: (response) => {
    console.info(response);
  },
});

GitHub

https://github.com/ogasawaraShinnosuke/oratosquilla