1.0.0 • Published 1 year ago

@spree/node-fetcher v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

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/storefront-api-v2-sdk@6.0.0/dist/client/index.js"></script>
<script src="https://unpkg.com/@spree/node-fetcher@1.0.0/dist/client/index.js"></script>

<script>
  const client = SpreeSDK.makeClient({
    host: 'http://localhost:3000',
    createFetcher: SpreeSDK.createFetchFetcher.default
  })
</script>