use-fetch

0.0.7 • Public • Published

use-fetch

A thin fetch wrapper with useful defaults. Inspired by got.

Installation

from npm

npm install use-fetch

or

yarn add use-fetch

from unpkg

<script src="https://unpkg.com/use-fetch@latest/dist/index.js"></script>
<script src="https://unpkg.com/use-fetch@latest/dist/index.min.js"></script>

You can access package through window.usefetch.

Usage

import usefetch from 'use-fetch';
 
usefetch('/messages', { json: true })
  .then(response => {
    console.log(response.body);
  });

API

usefetch(input, [init])

Returns a promise for a response object with a body property.

input

Type: string object

The URL to request as a string or a Request object.

init

Type: object

Any of the fetch init options.

headers

Type: object
Default: {}

Request headers.

json

Type: boolean Default: false

If set to true and content-type header is not set, it will be set to application/json.

Takes a response stream and reads it to completion through the response.json(). The result is parsed as JSON and saved to response.body. Sets the accept header to application/json.

body must be a plain object or array and will be stringified.

retry

Type: number|object Default:

  • retries: 2
  • methods: GET, PUT, HEAD, DELETE, OPTIONS, TRACE
  • statusCodes: 408, 413, 429, 500, 502, 503, 504

The numeric value sets the retries amount. The object represetns retries, methods, statusCodes fields.

It makes another request for listed methods and status codes in case of timeout or response was not successful (status in range 200-299).

timeout

Type: number
Default: 0

Milliseconds to wait for the server to respond before aborting request with error. By Default there's no timeout.

Advanced

To create fetch with your own preset use the createFetch function. By default it is initialized as in the example below.

import { createFetch } from 'use-fetch';
 
const usefetch = createFetch({
  // spec
  credentials: 'same-origin',
  redirect: 'follow',
  // custom
  json: false,
  redirect: 'follow',
  throwHttpErrors: true,
  timeout: 0,
});
 
export default usefetch;

Errors

Each error contains (if available) status, statusText, url and response properties to make debugging easier.

usefetch.HTTPError

When server response code is not 2xx.

usefetch.ParseError

When json option is enabled, server response code is 2xx, and response.json() fails.

usefetch.TimeoutError

When server didn't respond within specified timeout.

Polyfill

To use the library in browsers, that doesn't have fetch (see support here), you may want to add a polyfill. Check the unfetch project.

Development

The contents of src folder written in es5 syntax — saves times on transpilers setup, cause you don't need any.

  • yarn bundle — create standalone browser bundle
  • yarn check-es5 — checks if it's a valid es5 syntax
  • yarn lint --fix — lint the code and fix stylistic issues
  • yarn test — run tests in google chrome

Future plans

  • Add support of AbortController with request cancellation.
  • Read response stream as text by default.
  • Add support of the Request object.

License

The MIT License

Readme

Keywords

Package Sidebar

Install

npm i use-fetch

Weekly Downloads

3

Version

0.0.7

License

MIT

Unpacked Size

23.2 kB

Total Files

10

Last publish

Collaborators

  • sullenor