Skip to content

guestlinelabs/isomorphic-fetch-reject

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

isomorphic-fetch-reject

This package is using isomorphic-fetch and extends it to reject on HTTP error.

Standard fetch does not throw on HTTP errors (>= 400 status code). This wrapper allows it to do so.

This package is perfect for apps that render on both the server and the client side.

Install

npm i -S isomorphic-fetch-reject
yarn add isomorphic-fetch-reject

Usage

You can either use it like any other package:

import fetch from 'isomorphic-fetch-reject';

// Use just like the standard fetch
fetch('https://example.com/some/path')
  .then(res => res.json())
  .then(data => {
    console.log(data);
  })
  .catch(err => {
    console.error(err);
  });

Or you can add the fetch function directly to the global/window so you can use it from anywhere:

// file1.js
import fetch from 'isomorphic-fetch-reject';
fetch.replaceGlobal();
// file2.js
// Use just like the standard fetch
fetch('https://example.com/some/path')
  .then(res => res.json())
  .then(data => {
    console.log(data);
  })
  .catch(err => {
    console.error(err);
  });

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published