1.0.1 • Published 2 years ago

@react-use-hooks/use-fetch v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

React-use-fetch: useFetchGitHub license](https://github.com/amitdabade/react-use-fetch/blob/master/LICENSE) npm version

What is useFetch?

React hook to fetch data from network, with some additional awesome features.

Installation:

npm i @react-use-hooks/use-fetch --save

Code:

import React from 'react';
import ReactDOM from 'react-dom';
import { useFetch } from "@react-use-hooks/use-fetch";

function App() {
   const { fetch, data, error, fetching, status, request, response } = useFetch({
    url: "https://jsonplaceholder.typicode.com/todos/1"
   });
   return (
    <div className="App">
      <h1>React-use-hooks : useFetch</h1>
      <button onClick={() => fetch()}>Fetch Data</button>
      <p>Fetching: {fetching + ""}</p>
      <p>Status: {status}</p>
      <p>Request Method: {request?.method}</p>
      <p>Request URL: {request?.url}</p>
      <p>Response code: {response?.status}</p>
      <p>Response Text: {response?.statusText}</p>
      <p>Data: {data && JSON.stringify(data)}</p>
      <p>Error: {error && error.message}</p>
    </div>
  );
}

ReactDOM.render(<App />, document.getElementById('root'));

Demo:

Demo

Options:

url : string

License:

This project is licensed under the terms of the MIT license.