axios-fetch
axios-fetch copied to clipboard
A WebAPI Fetch implementation backed by an Axios client
I'm using this package as a fetch implementation for the Apollo Client in Gatsby. I want to upload files to the server, so I'm using the package: `apollo-upload-client`. But when...
Closes #83 This PR improves spec compliance of this library with accepting `Request` instance as input and several other small improvements (see comments). Also, I am not sure how `form-data`...
The Fetch API provides a [method for aborting an ongoing request](https://developer.mozilla.org/en-US/docs/Web/API/AbortController/abort). Is there a way to use this with the underlying `axios` engine, which relies on [cancellation tokens](https://axios-http.com/docs/cancellation)? There's currently...
Currently, the library solely depends on `node-fetch` for providing fetch primitives like `Header` class and so on. We plan to use it in the browser context, where these primitives are...
Per `fetch`'s spec it should also accept as "input" a [`Request`](https://developer.mozilla.org/en-US/docs/Web/API/Request) object which current implementation does not support.
Hello guys, hope you are well! First of, thanks for developing this awesome library, much appreciated! ❤️ I'm trying to import `useAxiosFetch` in my React app as an ES6 module:...
Not working in IE11 becuase In library you are using node-fetch module which does not work in ie11 so please include require('es6-promise').polyfill(); require('isomorphic-fetch'); top of your code. Cause of issue:...
Cookies without this module are passed to requests, I tried creating an instance of axios with the withCredentials option, the cookies will get passed. How are cookies passed?
Update createFetchHeaders return type to fit Response headers
Hello, I had initiate a new project with `Angular`, and install the following packages: - `angular-apollo` - `apollo-upload-client` - `@lifeomic/axios-fetch` - `axios` to test `onUploadProgress` but I get the following...