# @jacob-hooks/use-axios

> React Hook to send HTTP request and get data from URL

Latest version **1.0.19** (published 2021-08-12) · MIT license · 0 weekly downloads

## Install

```sh
npm install @jacob-hooks/use-axios
pnpm add @jacob-hooks/use-axios
yarn add @jacob-hooks/use-axios
bun add @jacob-hooks/use-axios
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.19 |
| Published | 2021-08-12 |
| First published | 2021-08-11 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Jacob Ko |
| Maintainers | jacobko |
| Keywords | react, react, hooks, axios, hooks |

## Links

- npm: https://www.npmjs.com/package/@jacob-hooks/use-axios
- Repository: https://github.com/jacobkosmart/custom-hooks
- Homepage: https://github.com/jacobkosmart/custom-hooks#readme
- Issues: https://github.com/jacobkosmart/custom-hooks/issues
- npm.io page: https://npm.io/package/@jacob-hooks/use-axios

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.0.19 (latest) — 2021-08-12
- 1.0.3 — 2021-08-12
- 1.0.1 — 2021-08-11
- 1.0.0 — 2021-08-11

## README

# @jacob-hooks/use-axios

React Hook to send HTTP request and get data from URL

# install

- yarn

`$ yarn add @jacob-hooks/use-axios`

- npm

`$ npm i @jacob-hooks/use-axios `

# Usage

```js
import useAxios from "@jacob-hooks/use-axios";

const App = () => {
  const { loading, data, refetch } = useAxios({
    url: "https://yts.mx/api/v2/list_movies.json",
  });
  return (
    <>
      <div className="App">
        <h1>{data && data.status}</h1>
        <h2>{loading && "Loading"}</h2>
        <button onClick={refetch}>Refetch</button>
      </div>
    </>
  );
};

export default App;
```

---
_Source: https://npm.io/package/@jacob-hooks/use-axios · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
