1.2.0 • Published 3 years ago

axios-react-hooks v1.2.0

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

axios-react-hooks

axios-react-hooks is a custom hooks library for consuming restful APIs using axios

How to Use

there is two hooks in this library:

  • useAxiosGet which can be used as below for GET requests:
const {data, loading, refetch} = useAxiosGet(
  {
    endpoint: 'your/api/endpoint/here',
    headers: {'header-name': 'header-value'}
  }
);
  • useAxiosPost which can be used as below for POST requests:
const [sendRequest, {data, loading}] = useAxiosPost(
  {
    endpoint: 'your/api/endpoint/here', 
    headers: {'header-name': 'header-value'}
  }
);
...
sendRequest(body);

author: allaith aldababseh

1.2.0

3 years ago

1.1.0

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago