@spree/node-fetcher
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

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>

Readme

Keywords

none

Package Sidebar

Install

npm i @spree/node-fetcher

Weekly Downloads

38

Version

1.0.0

License

none

Unpacked Size

452 kB

Total Files

16

Last publish

Collaborators

  • rafalcymerys
  • matthew-kennedy
  • damianlegawiec
  • arudnicka