@spree/node-fetcher
v1.0.0
Published
Node fetch fetcher for Spree api SDK.
Downloads
155
Keywords
Readme
Spree 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:
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:
<script src="https://unpkg.com/@spree/[email protected]/dist/client/index.js"></script>
<script src="https://unpkg.com/@spree/[email protected]/dist/client/index.js"></script>
<script>
const client = SpreeSDK.makeClient({
host: 'http://localhost:3000',
createFetcher: SpreeSDK.createFetchFetcher.default
})
</script>