axios-fetch

1.1.0 • Public • Published

Axios-Fetch

Greenkeeper badge Build Status Coverage Status

This library exposes a Fetch WebAPI implementation backed by a Axios client instance. This allows a bridge between projects that have pre-configured Axios clients already to other libraries that require Fetch implementations.

One library that wants a Fetch implementation is the Apollo Link HTTP library. If your project has an existing Axios client configured, then this project can help you use that client in your apollo-link-http instance. Here is some sample code:

const { buildAxiosFetch } = require("axios-fetch");
const { createHttpLink } = require("apollo-link-http");
const link = createHttpLink({
  uri: "/graphql"
  fetch: buildAxiosFetch(yourAxiosInstance)
});

Readme

Keywords

Package Sidebar

Install

npm i axios-fetch

Weekly Downloads

29,429

Version

1.1.0

License

MIT

Unpacked Size

145 kB

Total Files

4

Last publish

Collaborators

  • mdlavin