Node fetch fetcher for Spree api SDK.
npm install @spree/node-fetcherSpree SDK in NodeJS using fetch
To use Spree SDK with fetch in NodeJS, install Node Fetch along with the fetcher using NPM:
```
npm install @spree/node-fetcher node-fetch
Set the fetcher to fetch:
`js`
const createFetchFetcher = require('@spree/node-fetcher/dist/server/index').default
const { makeClient } = require('@spree/storefront-api-v2-sdk')
const client = makeClient({
host: 'http://localhost:3000',
createFetcher: createFetchFetcher
})
Spree SDK in the browser using fetch
Modern web browsers include fetch natively. To use Spree SDK with native fetch, it's enough to set fetcherType to 'fetch' when creating the Spree SDK Client:
`html
``