All Projects → qubyte → Fetch Ponyfill

qubyte / Fetch Ponyfill

Licence: mit
WHATWG fetch ponyfill

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Fetch Ponyfill

Node Fetch
A light-weight module that brings the Fetch API to Node.js
Stars: ✭ 7,176 (+3333.49%)
Mutual labels:  whatwg, fetch, fetch-api
Frisbee
🐕 Modern fetch-based alternative to axios/superagent/request. Great for React Native.
Stars: ✭ 1,038 (+396.65%)
Mutual labels:  whatwg, fetch, fetch-api
Abortcontroller Polyfill
Polyfill for the AbortController DOM API and abortable fetch (stub that calls catch, doesn't actually abort request).
Stars: ✭ 273 (+30.62%)
Mutual labels:  fetch, ponyfill
React Fetch Hook
React hook for conveniently use Fetch API
Stars: ✭ 285 (+36.36%)
Mutual labels:  fetch, fetch-api
Zl Fetch
A library that makes the Fetch API a breeze
Stars: ✭ 186 (-11%)
Mutual labels:  fetch, fetch-api
fetch-wrap
extend WHATWG fetch wrapping it with middlewares
Stars: ✭ 21 (-89.95%)
Mutual labels:  fetch, fetch-api
re-frame-fetch-fx
js/fetch Effect Handler for re-frame
Stars: ✭ 24 (-88.52%)
Mutual labels:  fetch, fetch-api
Fetch Suspense
A React hook compatible with React 16.6's Suspense component.
Stars: ✭ 479 (+129.19%)
Mutual labels:  fetch, fetch-api
bestfetch
fetch ⭐️caching ⭐️deduplication
Stars: ✭ 44 (-78.95%)
Mutual labels:  fetch, fetch-api
Create Request
Apply interceptors to `fetch` and create a custom request function.
Stars: ✭ 34 (-83.73%)
Mutual labels:  fetch, fetch-api
axios-endpoints
Axios endpoints helps you to create a more concise endpoint mapping with axios.
Stars: ✭ 41 (-80.38%)
Mutual labels:  fetch, fetch-api
React Ufo
🛸 react-ufo - A simple React hook to help you with data fetching 🛸
Stars: ✭ 85 (-59.33%)
Mutual labels:  fetch, fetch-api
form-data
Spec-compliant FormData implementation for Node.js
Stars: ✭ 73 (-65.07%)
Mutual labels:  fetch, ponyfill
Fetch
Fetch Standard
Stars: ✭ 1,794 (+758.37%)
Mutual labels:  whatwg, fetch
node-fetch-har
Generate HAR entries for requests made with node-fetch
Stars: ✭ 23 (-89%)
Mutual labels:  fetch, fetch-api
Fetch Examples
A repository of Fetch examples. See https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API for the corresponding documentation.
Stars: ✭ 431 (+106.22%)
Mutual labels:  fetch, fetch-api
fetch
A fetch API polyfill for React Native with text streaming support.
Stars: ✭ 27 (-87.08%)
Mutual labels:  fetch, fetch-api
legible
the cleanest way to make http requests in js / node
Stars: ✭ 49 (-76.56%)
Mutual labels:  fetch, fetch-api
Unfetch
🐕 Bare minimum 500b fetch polyfill.
Stars: ✭ 5,239 (+2406.7%)
Mutual labels:  fetch, ponyfill
Cross Fetch
Universal WHATWG Fetch API for Node, Browsers and React Native.
Stars: ✭ 1,063 (+408.61%)
Mutual labels:  fetch, fetch-api

Fetch Ponyfill

WHATWG fetch ponyfill

This module wraps the github/fetch polyfill in a CommonJS module for browserification, and avoids appending anything to the window, instead returning a setup function when fetch-ponyfill is required. Inspired by object-assign.

When used in Node, delegates to node-fetch instead.

Usage

Browserify

const {fetch, Request, Response, Headers} = require('fetch-ponyfill')(options);

Webpack

import fetchPonyfill from 'fetch-ponyfill';
const {fetch, Request, Response, Headers} = fetchPonyfill(options);

Options

Where options is an object with the following optional properties:

option description
Promise An A+ Promise implementation. Defaults to window.Promise in the browser, and global.Promise in Node.
XMLHttpRequest The XMLHttpRequest constructor. This is useful to feed in when working with Firefox OS. Defaults to window.XMLHttpRequest. Has no effect in Node.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].