Cross Fetch

Universal WHATWG Fetch API for Node, Browsers and React Native.
Alternatives To Cross Fetch
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Node Fetch8,461219,66833,65914 days ago94July 25, 2023188mitJavaScript
A light-weight module that brings the Fetch API to Node.js
Graphql Yoga7,7481,462232a day ago2,084June 28, 202375mitTypeScript
🧘 Rewrite of a fully-featured GraphQL Server with focus on easy setup, performance & great developer experience. The core of Yoga implements WHATWG Fetch API and can run/deploy on any JS environment.
Isomorphic Fetch6,936185,2067,6597 months ago23September 23, 202054mitJavaScript
Isomorphic WHATWG Fetch API, for Node & Browserify
Fetch2,023
15 days ago243otherHTML
Fetch Standard
Cross Fetch1,58714,3084,9142 months ago49July 03, 202310mitJavaScript
Universal WHATWG Fetch API for Node, Browsers and React Native.
Frisbee1,120721910 months ago62July 10, 2020n,ullmitJavaScript
:dog2: Modern fetch-based alternative to axios/superagent/request. Great for React Native.
Xr4546073 years ago31January 25, 20212mitTypeScript
Ultra-lightweight wrapper around XMLHttpRequest. You should probably use fetch (whatwg-fetch) or RxJS, though.
Fets361
6 hours ago22mitTypeScript
TypeScript HTTP Framework focusing on e2e type-safety, easy setup, performance & great developer experience
Undici Fetch244
2 years ago9July 06, 2021mitJavaScript
A WHATWG Fetch implementation based on @nodejs/undici
Fetch Ponyfill2191,8783402 years ago22January 19, 20212mitJavaScript
WHATWG fetch ponyfill
Alternatives To Cross Fetch
Select To Compare


Alternative Project Comparisons
Readme

cross-fetch
NPM Version Downloads Per Week License: MIT CI codecov

Universal WHATWG Fetch API for Node, Browsers, Workers and React Native. The scenario that cross-fetch really shines is when the same JavaScript codebase needs to run on different platforms.

  • Platform agnostic: browsers, Node or React Native
  • Optional polyfill: it's up to you if something is going to be added to the global object or not
  • Simple interface: no instantiation, no configuration and no extra dependency
  • WHATWG compliant: it works the same way wherever your code runs
  • TypeScript support: better development experience with types.
  • Worker support: works on different types of workers such as Service Workers and CloudFlare Workers

Table of Contents


Install

npm install --save cross-fetch

As a ponyfill (imports locally):

// Using ES6 modules with Babel or TypeScript
import fetch from 'cross-fetch';

// Using CommonJS modules
const fetch = require('cross-fetch');

As a polyfill (installs globally):

// Using ES6 modules
import 'cross-fetch/polyfill';

// Using CommonJS modules
require('cross-fetch/polyfill');

The CDN build is also available on unpkg:

<script src="//unpkg.com/cross-fetch/dist/cross-fetch.js"></script>

This adds the fetch function to the window object. Note that this is not UMD compatible.


Usage

With promises:

import fetch from 'cross-fetch';
// Or just: import 'cross-fetch/polyfill';

fetch('//api.github.com/users/lquixada')
  .then(res => {
    if (res.status >= 400) {
      throw new Error("Bad response from server");
    }
    return res.json();
  })
  .then(user => {
    console.log(user);
  })
  .catch(err => {
    console.error(err);
  });

With async/await:

import fetch from 'cross-fetch';
// Or just: import 'cross-fetch/polyfill';

(async () => {
  try {
    const res = await fetch('//api.github.com/users/lquixada');
    
    if (res.status >= 400) {
      throw new Error("Bad response from server");
    }
    
    const user = await res.json();
  
    console.log(user);
  } catch (err) {
    console.error(err);
  }
})();

Demo & API

You can find a comprehensive doc at Github's fetch page. If you want to play with cross-fetch, check our JSFiddle playground.

Tip: Run the fiddle on various browsers and with different settings (for instance: cross-domain requests, wrong urls or text requests). Don't forget to open the console in the test suite page and play around.

FAQ

Yet another fetch library?

I did a lot of research in order to find a fetch library that could be simple, cross-platform and provide polyfill as an option. There's a plethora of libs out there but none could match those requirements.

Why polyfill might not be a good idea?

In a word? Risk. If the spec changes in the future, it might be problematic to debug. Read more about it on sindresorhus's ponyfill page. It's up to you if you're fine with it or not.

How does cross-fetch work?

Just like isomorphic-fetch, it is just a proxy. If you're in node, it delivers you the node-fetch library, if you're in a browser or React Native, it delivers you the github's whatwg-fetch. The same strategy applies whether you're using polyfill or ponyfill.

Who's Using It?

The New York Times Apollo GraphQL Facebook Swagger VulcanJS graphql-request
The New York Times Apollo GraphQL Facebook Swagger VulcanJS graphql-request

Thanks

Heavily inspired by the works of matthew-andrews. Kudos to him!

License

cross-fetch is licensed under the MIT license Leonardo Quixad

Author

@lquixada
@lquixada
Popular Fetch Projects
Popular Whatwg Projects
Popular Networking Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Reactjs
Http
Fetch
Http Client
Polyfill
Isomorphic
Whatwg
Ponyfill